typeduck-codex-utils-rustls-provider 0.10.0

Support package for the standalone Codex Web runtime (codex-memories-read)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Read-path helpers for Codex memories.
//!
//! This crate owns memory injection, memory citation parsing, and telemetry
//! classification for read access to the memory folder. It intentionally does
//! not depend on the memory write pipeline.

pub mod citations;
mod metrics;
pub mod usage;

use codex_utils_absolute_path::AbsolutePathBuf;

pub fn memory_root(codex_home: &AbsolutePathBuf) -> AbsolutePathBuf {
    codex_home.join("memories")
}