mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
4231472c03
## 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.
10 lines
316 B
Rust
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;
|