codetether_agent/session/context/mod.rs
1//! Derive the per-step LLM context from an append-only chat history.
2//!
3//! See [`derive_context`] and [`derive_with_policy`] for entry points.
4
5mod compress_step;
6mod derive;
7mod helpers;
8mod policy;
9mod reset;
10mod reset_helpers;
11mod reset_rebuild;
12mod reset_summary;
13
14pub use self::derive::derive_context;
15pub use self::helpers::DerivedContext;
16pub use self::policy::derive_with_policy;