Files
codex/codex-rs/core/src/context_manager/mod.rs
T
pakrym-oai 4231472c03 Rewrite oversized tool outputs during remote compaction (#26251)
## Why

When trying to fit history under compaction limit rewrite output items
instead of removing them entirely. Otherwise we're breaking
incrementality in relation to the previous response.
2026-06-03 15:25:50 -07:00

10 lines
316 B
Rust

mod history;
mod normalize;
pub(crate) mod updates;
pub(crate) use history::ContextManager;
pub(crate) use history::TotalTokenUsageBreakdown;
pub(crate) use history::estimate_response_item_model_visible_bytes;
pub(crate) use history::is_user_turn_boundary;
pub(crate) use history::truncate_function_output_payload;