Do not append items on override turn context (#10354)

This commit is contained in:
pakrym-oai
2026-02-01 18:51:26 -08:00
committed by GitHub
Unverified
parent 8b95d3e082
commit 03fcd12e77
11 changed files with 288 additions and 101 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ pub(crate) async fn run_inline_remote_auto_compact_task(
pub(crate) async fn run_remote_compact_task(sess: Arc<Session>, turn_context: Arc<TurnContext>) {
let start_event = EventMsg::TurnStarted(TurnStartedEvent {
model_context_window: turn_context.client.get_model_context_window(),
collaboration_mode_kind: turn_context.collaboration_mode_kind,
collaboration_mode_kind: turn_context.collaboration_mode.mode,
});
sess.send_event(&turn_context, start_event).await;