File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,15 @@ class ModelSettings:
36
36
"""The tool choice to use when calling the model."""
37
37
38
38
parallel_tool_calls : bool | None = None
39
- """Whether to use parallel tool calls when calling the model.
40
- Defaults to True if not provided."""
39
+ """Controls whether the model can make multiple parallel tool calls in a single turn.
40
+
41
+ If not provided (i.e., set to None), this behavior defers to the underlying
42
+ model provider's default. For most current providers (e.g., OpenAI), this typically
43
+ means parallel tool calls are enabled (True).
44
+
45
+ Set to True to explicitly enable parallel tool calls, or False to restrict the
46
+ model to at most one tool call per turn.
47
+ """
41
48
42
49
truncation : Literal ["auto" , "disabled" ] | None = None
43
50
"""The truncation strategy to use when calling the model."""
You can’t perform that action at this time.
0 commit comments