mirror of
https://github.com/openai/codex.git
synced 2026-05-18 02:02:30 +00:00
21 lines
600 B
Rust
21 lines
600 B
Rust
//! 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;
|
|
mod prompts;
|
|
pub mod usage;
|
|
|
|
use codex_utils_absolute_path::AbsolutePathBuf;
|
|
|
|
pub use prompts::build_memory_tool_developer_instructions;
|
|
|
|
const MEMORY_TOOL_DEVELOPER_INSTRUCTIONS_SUMMARY_TOKEN_LIMIT: usize = 5_000;
|
|
|
|
pub fn memory_root(codex_home: &AbsolutePathBuf) -> AbsolutePathBuf {
|
|
codex_home.join("memories")
|
|
}
|