NIT unified exec (#3479)

Fix the default value of the experimental flag of unified_exec
This commit is contained in:
jif-oai
2025-09-11 09:19:12 -07:00
committed by GitHub
parent e13b35ecb0
commit 114ce9ff4d
2 changed files with 6 additions and 7 deletions

View File

@@ -191,8 +191,7 @@ async fn prompt_tools_are_consistent_across_requests() {
let expected_instructions: &str = include_str!("../../prompt.md");
// our internal implementation is responsible for keeping tools in sync
// with the OpenAI schema, so we just verify the tool presence here
let expected_tools_names: &[&str] =
&["unified_exec", "update_plan", "apply_patch", "view_image"];
let expected_tools_names: &[&str] = &["shell", "update_plan", "apply_patch", "view_image"];
let body0 = requests[0].body_json::<serde_json::Value>().unwrap();
assert_eq!(
body0["instructions"],