Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions codex-rs/core/src/config/config_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7056,7 +7056,7 @@ async fn test_precedence_fixture_with_o3_profile() -> std::io::Result<()> {
commit_attribution: None,
forced_chatgpt_workspace_id: None,
forced_login_method: None,
include_apply_patch_tool: false,
include_apply_patch_tool: true,
web_search_mode: Constrained::allow_any(WebSearchMode::Cached),
web_search_config: None,
use_experimental_unified_exec_tool: !cfg!(windows),
Expand Down Expand Up @@ -7315,7 +7315,7 @@ async fn test_precedence_fixture_with_gpt3_profile() -> std::io::Result<()> {
commit_attribution: None,
forced_chatgpt_workspace_id: None,
forced_login_method: None,
include_apply_patch_tool: false,
include_apply_patch_tool: true,
web_search_mode: Constrained::allow_any(WebSearchMode::Cached),
web_search_config: None,
use_experimental_unified_exec_tool: !cfg!(windows),
Expand Down Expand Up @@ -7473,7 +7473,7 @@ async fn test_precedence_fixture_with_zdr_profile() -> std::io::Result<()> {
commit_attribution: None,
forced_chatgpt_workspace_id: None,
forced_login_method: None,
include_apply_patch_tool: false,
include_apply_patch_tool: true,
web_search_mode: Constrained::allow_any(WebSearchMode::Cached),
web_search_config: None,
use_experimental_unified_exec_tool: !cfg!(windows),
Expand Down Expand Up @@ -7616,7 +7616,7 @@ async fn test_precedence_fixture_with_gpt5_profile() -> std::io::Result<()> {
commit_attribution: None,
forced_chatgpt_workspace_id: None,
forced_login_method: None,
include_apply_patch_tool: false,
include_apply_patch_tool: true,
web_search_mode: Constrained::allow_any(WebSearchMode::Cached),
web_search_config: None,
use_experimental_unified_exec_tool: !cfg!(windows),
Expand Down
14 changes: 14 additions & 0 deletions codex-rs/core/tests/suite/tools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,20 @@ async fn shell_timeout_includes_timeout_prefix_and_metadata() -> Result<()> {
"timeout output missing `command timed out`: {stdout}"
);
} else {
let normalized_output = output_str
.replace("\r\n", "\n")
.replace('\r', "\n")
.trim_end_matches('\n')
.to_string();

let shell_output_pattern = r"(?s)^Exit code: 124\nWall time: [0-9]+(?:\.[0-9]+)? seconds\nOutput:\ncommand timed out after [0-9]+ milliseconds\n(?:.*)?$";
if Regex::new(shell_output_pattern)
.expect("shell timeout output regex should compile")
.is_match(&normalized_output)
{
return Ok(());
}

// Fallback: accept the signal classification path to deflake the test.
let signal_pattern = r"(?is)^execution error:.*signal.*$";
assert_regex_match(signal_pattern, output_str);
Expand Down
4 changes: 2 additions & 2 deletions codex-rs/features/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -818,8 +818,8 @@ pub const FEATURES: &[FeatureSpec] = &[
FeatureSpec {
id: Feature::ApplyPatchFreeform,
key: "apply_patch_freeform",
stage: Stage::UnderDevelopment,
default_enabled: false,
stage: Stage::Stable,
default_enabled: true,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Gate freeform default by model capability

Setting this feature on by default makes every model whose apply_patch_tool_type is None get a freeform grammar tool via ToolsConfig::new's None => ...Freeform branch. Catalog entries such as Bedrock GPT-OSS still use None, and the JSON apply_patch tool is documented as the GPT-OSS-compatible path, so those sessions will now send an unsupported freeform tool unless explicitly disabled.

Useful? React with 👍 / 👎.

},
FeatureSpec {
id: Feature::ApplyPatchStreamingEvents,
Expand Down
2 changes: 1 addition & 1 deletion codex-rs/features/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ fn materialize_resolved_enabled_writes_all_features_and_preserves_custom_config(
FeatureConfigSource::default(),
FeatureOverrides::default(),
);
assert_eq!(replayed.enabled(Feature::ApplyPatchFreeform), false);
assert_eq!(replayed.enabled(Feature::ApplyPatchFreeform), true);
}

#[test]
Expand Down
2 changes: 1 addition & 1 deletion codex-rs/tools/src/tool_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ impl ToolsConfig {
let apply_patch_tool_type = match model_info.apply_patch_tool_type {
Some(ApplyPatchToolType::Freeform) => Some(ApplyPatchToolType::Freeform),
Some(ApplyPatchToolType::Function) => Some(ApplyPatchToolType::Function),
None => include_apply_patch_tool.then_some(ApplyPatchToolType::Freeform),
None => include_apply_patch_tool.then_some(ApplyPatchToolType::Function),
};

let agent_jobs_worker_tools = include_agent_jobs
Expand Down
24 changes: 24 additions & 0 deletions codex-rs/tools/src/tool_config_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use codex_features::Features;
use codex_protocol::config_types::WebSearchMode;
use codex_protocol::config_types::WindowsSandboxLevel;
use codex_protocol::models::PermissionProfile;
use codex_protocol::openai_models::ApplyPatchToolType;
use codex_protocol::openai_models::ConfigShellToolType;
use codex_protocol::openai_models::InputModality;
use codex_protocol::openai_models::ModelInfo;
Expand Down Expand Up @@ -154,6 +155,29 @@ fn shell_zsh_fork_prefers_shell_command_over_unified_exec() {
);
}

#[test]
fn fallback_apply_patch_models_use_function_tool_by_default() {
let model_info = model_info();
let features = Features::with_defaults();

let available_models = Vec::new();
let tools_config = ToolsConfig::new(&ToolsConfigParams {
model_info: &model_info,
available_models: &available_models,
features: &features,
image_generation_tool_auth_allowed: true,
web_search_mode: Some(WebSearchMode::Cached),
session_source: SessionSource::Cli,
permission_profile: &PermissionProfile::Disabled,
windows_sandbox_level: WindowsSandboxLevel::Disabled,
});

assert_eq!(
tools_config.apply_patch_tool_type,
Some(ApplyPatchToolType::Function)
);
}

#[test]
fn subagents_keep_request_user_input_config_and_agent_jobs_workers_opt_in_by_label() {
let model_info = model_info();
Expand Down
Loading