This commit is contained in:
jimmyfraiture
2025-10-01 10:25:59 +01:00
parent 16abbe34f8
commit b41adf1cc5
3 changed files with 24 additions and 0 deletions

View File

@@ -72,6 +72,10 @@ pub struct Cli {
#[arg(long = "search", default_value_t = false)]
pub web_search: bool,
/// Disable automatic conversation history compaction triggered near the model token limit.
#[arg(long = "disable-auto-compaction", default_value_t = false)]
pub disable_auto_compaction: bool,
#[clap(skip)]
pub config_overrides: CliConfigOverrides,
}