Skip to main content

codetether_rlm/
context_trace.rs

1//! Context tracing for RLM iterations.
2//!
3//! Tracks token budget and context events per RLM iteration to enable
4//! analysis of context window usage and optimization opportunities.
5
6mod event;
7mod event_meta;
8mod summary;
9mod summary_format;
10mod token_estimate;
11mod token_factories;
12mod trace;
13mod trace_budget;
14mod trace_events;
15mod trace_summary;
16
17pub use event::ContextEvent;
18pub use summary::ContextTraceSummary;
19pub use trace::ContextTrace;
20
21#[cfg(test)]
22mod tests;