mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
chore: enable sub agents (#11173)
This commit is contained in:
@@ -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",
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user