From ddaf4053f6d7eb6c97346e391b51d86d7cadacba Mon Sep 17 00:00:00 2001 From: cthomas Date: Thu, 19 Feb 2026 18:10:15 -0800 Subject: [PATCH] test: fix parallel tool call default value (#9572) --- tests/sdk/agents_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/sdk/agents_test.py b/tests/sdk/agents_test.py index 9937f6f4..74079c0d 100644 --- a/tests/sdk/agents_test.py +++ b/tests/sdk/agents_test.py @@ -11,7 +11,7 @@ AGENTS_CREATE_PARAMS = [ # (OpenAIModelSettings defaults to True only when explicitly instantiated) "model_settings": { "max_output_tokens": 16384, - "parallel_tool_calls": False, + "parallel_tool_calls": True, "strict": False, "provider_type": "openai", "temperature": 1.0, @@ -31,7 +31,7 @@ AGENTS_UPDATE_PARAMS = [ # After updating just the name, model_settings should still be present "model_settings": { "max_output_tokens": 16384, - "parallel_tool_calls": False, + "parallel_tool_calls": True, "strict": False, "provider_type": "openai", "temperature": 1.0,