Compare commits

...

2 Commits

Author SHA1 Message Date
Eric Traut
de056a20a3 Merge branch 'main' into etraut/extended-history-tui 2026-04-30 13:07:49 -07:00
Eric Traut
3c957386df Restore limited TUI rollout persistence 2026-04-18 22:15:44 -07:00

View File

@@ -1175,7 +1175,7 @@ fn thread_start_params_from_config(
config: config_request_overrides_from_config(config),
ephemeral: Some(config.ephemeral),
session_start_source,
persist_extended_history: true,
persist_extended_history: false,
..ThreadStartParams::default()
}
}
@@ -1206,7 +1206,7 @@ fn thread_resume_params_from_config(
sandbox,
permissions,
config: config_request_overrides_from_config(&config),
persist_extended_history: true,
persist_extended_history: false,
..ThreadResumeParams::default()
}
}
@@ -1240,7 +1240,7 @@ fn thread_fork_params_from_config(
base_instructions: config.base_instructions.clone(),
developer_instructions: config.developer_instructions.clone(),
ephemeral: config.ephemeral,
persist_extended_history: true,
persist_extended_history: false,
..ThreadForkParams::default()
}
}