1 2 3 4 5 6 7 8 9 10 11 12 13
// SPDX-License-Identifier: LGPL-2.1-or-later // Copyright (C) Jarkko Sakkinen 2026 //! Session compaction: extract, brief, and bound a summary. mod brief; mod extract; mod summarize; mod types; mod util; pub use summarize::{summarize_with_previous_and_budget, summary_token_estimate}; pub use types::Summary;