Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions codex-rs/memories/read/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
//! not depend on the memory write pipeline.

pub mod citations;
mod metrics;
mod prompts;
pub mod usage;

Expand Down
1 change: 1 addition & 0 deletions codex-rs/memories/read/src/metrics.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub const MEMORIES_USAGE_METRIC: &str = "codex.memories.usage";
2 changes: 1 addition & 1 deletion codex-rs/memories/read/src/usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use codex_protocol::parse_command::ParsedCommand;
use codex_shell_command::is_safe_command::is_known_safe_command;
use codex_shell_command::parse_command::parse_command;

pub const MEMORIES_USAGE_METRIC: &str = "codex.memories.usage";
pub use crate::metrics::MEMORIES_USAGE_METRIC;

#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum MemoriesUsageKind {
Expand Down
Loading