diff --git a/codex-rs/core/src/codex.rs b/codex-rs/core/src/codex.rs index 2773548ca0..d7c39c14a5 100644 --- a/codex-rs/core/src/codex.rs +++ b/codex-rs/core/src/codex.rs @@ -883,10 +883,6 @@ impl Session { /// Build the full turn input by concatenating the current conversation /// history with additional items for this turn. pub fn turn_input_with_history(&self, extra: Vec) -> Vec { - tracing::info!( - "history: {:?}", - self.state.lock_unchecked().history.contents() - ); [self.state.lock_unchecked().history.contents(), extra].concat() } @@ -1413,7 +1409,6 @@ async fn run_task( sub_id: String, input: Vec, ) { - tracing::info!("running task with input: {:?}", input); if input.is_empty() { return; } @@ -1554,7 +1549,6 @@ async fn run_task( }, None, ) => { - tracing::info!("reasoning item: {:?}", item); items_to_record_in_conversation_history.push(ResponseItem::Reasoning { id: id.clone(), summary: summary.clone(), diff --git a/codex-rs/core/src/config.rs b/codex-rs/core/src/config.rs index c52b5e0161..fc549664d2 100644 --- a/codex-rs/core/src/config.rs +++ b/codex-rs/core/src/config.rs @@ -1188,6 +1188,7 @@ disable_response_storage = true use_experimental_streamable_shell_tool: false, include_view_image_tool: true, disable_paste_burst: false, + skip_reasoning_in_chat_completions: false, }, o3_profile_config ); @@ -1246,6 +1247,7 @@ disable_response_storage = true use_experimental_streamable_shell_tool: false, include_view_image_tool: true, disable_paste_burst: false, + skip_reasoning_in_chat_completions: false, }; assert_eq!(expected_gpt3_profile_config, gpt3_profile_config); @@ -1319,6 +1321,7 @@ disable_response_storage = true use_experimental_streamable_shell_tool: false, include_view_image_tool: true, disable_paste_burst: false, + skip_reasoning_in_chat_completions: false, }; assert_eq!(expected_zdr_profile_config, zdr_profile_config);