test: fix parallel tool call default value (#9572)

This commit is contained in:
cthomas
2026-02-19 18:10:15 -08:00
committed by Caren Thomas
parent a101d5980d
commit ddaf4053f6

View File

@@ -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,