@@ -828,6 +828,7 @@ def create_and_run_poll(
828
828
None ,
829
829
]
830
830
| NotGiven = NOT_GIVEN ,
831
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
831
832
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
832
833
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
833
834
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -856,6 +857,7 @@ def create_and_run_poll(
856
857
max_prompt_tokens = max_prompt_tokens ,
857
858
metadata = metadata ,
858
859
model = model ,
860
+ parallel_tool_calls = parallel_tool_calls ,
859
861
response_format = response_format ,
860
862
temperature = temperature ,
861
863
stream = False ,
@@ -908,6 +910,7 @@ def create_and_run_stream(
908
910
None ,
909
911
]
910
912
| NotGiven = NOT_GIVEN ,
913
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
911
914
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
912
915
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
913
916
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -962,6 +965,7 @@ def create_and_run_stream(
962
965
None ,
963
966
]
964
967
| NotGiven = NOT_GIVEN ,
968
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
965
969
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
966
970
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
967
971
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -1016,6 +1020,7 @@ def create_and_run_stream(
1016
1020
None ,
1017
1021
]
1018
1022
| NotGiven = NOT_GIVEN ,
1023
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
1019
1024
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
1020
1025
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
1021
1026
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -1050,6 +1055,7 @@ def create_and_run_stream(
1050
1055
"max_prompt_tokens" : max_prompt_tokens ,
1051
1056
"metadata" : metadata ,
1052
1057
"model" : model ,
1058
+ "parallel_tool_calls" : parallel_tool_calls ,
1053
1059
"response_format" : response_format ,
1054
1060
"temperature" : temperature ,
1055
1061
"tool_choice" : tool_choice ,
@@ -1838,6 +1844,7 @@ async def create_and_run_poll(
1838
1844
None ,
1839
1845
]
1840
1846
| NotGiven = NOT_GIVEN ,
1847
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
1841
1848
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
1842
1849
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
1843
1850
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -1866,6 +1873,7 @@ async def create_and_run_poll(
1866
1873
max_prompt_tokens = max_prompt_tokens ,
1867
1874
metadata = metadata ,
1868
1875
model = model ,
1876
+ parallel_tool_calls = parallel_tool_calls ,
1869
1877
response_format = response_format ,
1870
1878
temperature = temperature ,
1871
1879
stream = False ,
@@ -1920,6 +1928,7 @@ def create_and_run_stream(
1920
1928
None ,
1921
1929
]
1922
1930
| NotGiven = NOT_GIVEN ,
1931
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
1923
1932
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
1924
1933
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
1925
1934
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -1974,6 +1983,7 @@ def create_and_run_stream(
1974
1983
None ,
1975
1984
]
1976
1985
| NotGiven = NOT_GIVEN ,
1986
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
1977
1987
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
1978
1988
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
1979
1989
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -2028,6 +2038,7 @@ def create_and_run_stream(
2028
2038
None ,
2029
2039
]
2030
2040
| NotGiven = NOT_GIVEN ,
2041
+ parallel_tool_calls : bool | NotGiven = NOT_GIVEN ,
2031
2042
response_format : Optional [AssistantResponseFormatOptionParam ] | NotGiven = NOT_GIVEN ,
2032
2043
temperature : Optional [float ] | NotGiven = NOT_GIVEN ,
2033
2044
thread : thread_create_and_run_params .Thread | NotGiven = NOT_GIVEN ,
@@ -2064,6 +2075,7 @@ def create_and_run_stream(
2064
2075
"max_prompt_tokens" : max_prompt_tokens ,
2065
2076
"metadata" : metadata ,
2066
2077
"model" : model ,
2078
+ "parallel_tool_calls" : parallel_tool_calls ,
2067
2079
"response_format" : response_format ,
2068
2080
"temperature" : temperature ,
2069
2081
"tool_choice" : tool_choice ,
0 commit comments