chore: enable sub agents (#11173)

This commit is contained in:
jif-oai
2026-02-09 11:25:37 +00:00
committed by GitHub
parent 13de744296
commit 284c03ceab
5 changed files with 97 additions and 12 deletions

View File

@@ -81,6 +81,11 @@ async fn model_selects_expected_tools() {
"request_user_input",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"codex-mini-latest should expose the local shell tool",
@@ -100,6 +105,11 @@ async fn model_selects_expected_tools() {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5-codex should expose the apply_patch tool",
@@ -119,6 +129,11 @@ async fn model_selects_expected_tools() {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5.1-codex should expose the apply_patch tool",
@@ -137,6 +152,11 @@ async fn model_selects_expected_tools() {
"request_user_input",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5 should expose the apply_patch tool",
@@ -156,6 +176,11 @@ async fn model_selects_expected_tools() {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5.1 should expose the apply_patch tool",
@@ -173,7 +198,12 @@ async fn model_selects_expected_tools() {
"request_user_input".to_string(),
"apply_patch".to_string(),
"web_search".to_string(),
"view_image".to_string()
"view_image".to_string(),
"spawn_agent".to_string(),
"send_input".to_string(),
"resume_agent".to_string(),
"wait".to_string(),
"close_agent".to_string()
],
"exp-5.1 should expose the apply_patch tool",
);