@@ -132,6 +132,7 @@ def test_method_create(self, client: PromptFoundry) -> None:
132
132
"seed" : 0 ,
133
133
"tool_choice" : "string" ,
134
134
"stream" : True ,
135
+ "parallel_tool_calls" : True ,
135
136
},
136
137
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
137
138
)
@@ -247,6 +248,7 @@ def test_raw_response_create(self, client: PromptFoundry) -> None:
247
248
"seed" : 0 ,
248
249
"tool_choice" : "string" ,
249
250
"stream" : True ,
251
+ "parallel_tool_calls" : True ,
250
252
},
251
253
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
252
254
)
@@ -366,6 +368,7 @@ def test_streaming_response_create(self, client: PromptFoundry) -> None:
366
368
"seed" : 0 ,
367
369
"tool_choice" : "string" ,
368
370
"stream" : True ,
371
+ "parallel_tool_calls" : True ,
369
372
},
370
373
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
371
374
) as response :
@@ -488,6 +491,7 @@ def test_method_update(self, client: PromptFoundry) -> None:
488
491
"seed" : 0 ,
489
492
"tool_choice" : "string" ,
490
493
"stream" : True ,
494
+ "parallel_tool_calls" : True ,
491
495
},
492
496
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
493
497
)
@@ -604,6 +608,7 @@ def test_raw_response_update(self, client: PromptFoundry) -> None:
604
608
"seed" : 0 ,
605
609
"tool_choice" : "string" ,
606
610
"stream" : True ,
611
+ "parallel_tool_calls" : True ,
607
612
},
608
613
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
609
614
)
@@ -724,6 +729,7 @@ def test_streaming_response_update(self, client: PromptFoundry) -> None:
724
729
"seed" : 0 ,
725
730
"tool_choice" : "string" ,
726
731
"stream" : True ,
732
+ "parallel_tool_calls" : True ,
727
733
},
728
734
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
729
735
) as response :
@@ -847,6 +853,7 @@ def test_path_params_update(self, client: PromptFoundry) -> None:
847
853
"seed" : 0 ,
848
854
"tool_choice" : "string" ,
849
855
"stream" : True ,
856
+ "parallel_tool_calls" : True ,
850
857
},
851
858
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
852
859
)
@@ -1303,6 +1310,7 @@ async def test_method_create(self, async_client: AsyncPromptFoundry) -> None:
1303
1310
"seed" : 0 ,
1304
1311
"tool_choice" : "string" ,
1305
1312
"stream" : True ,
1313
+ "parallel_tool_calls" : True ,
1306
1314
},
1307
1315
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
1308
1316
)
@@ -1418,6 +1426,7 @@ async def test_raw_response_create(self, async_client: AsyncPromptFoundry) -> No
1418
1426
"seed" : 0 ,
1419
1427
"tool_choice" : "string" ,
1420
1428
"stream" : True ,
1429
+ "parallel_tool_calls" : True ,
1421
1430
},
1422
1431
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
1423
1432
)
@@ -1537,6 +1546,7 @@ async def test_streaming_response_create(self, async_client: AsyncPromptFoundry)
1537
1546
"seed" : 0 ,
1538
1547
"tool_choice" : "string" ,
1539
1548
"stream" : True ,
1549
+ "parallel_tool_calls" : True ,
1540
1550
},
1541
1551
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
1542
1552
) as response :
@@ -1659,6 +1669,7 @@ async def test_method_update(self, async_client: AsyncPromptFoundry) -> None:
1659
1669
"seed" : 0 ,
1660
1670
"tool_choice" : "string" ,
1661
1671
"stream" : True ,
1672
+ "parallel_tool_calls" : True ,
1662
1673
},
1663
1674
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
1664
1675
)
@@ -1775,6 +1786,7 @@ async def test_raw_response_update(self, async_client: AsyncPromptFoundry) -> No
1775
1786
"seed" : 0 ,
1776
1787
"tool_choice" : "string" ,
1777
1788
"stream" : True ,
1789
+ "parallel_tool_calls" : True ,
1778
1790
},
1779
1791
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
1780
1792
)
@@ -1895,6 +1907,7 @@ async def test_streaming_response_update(self, async_client: AsyncPromptFoundry)
1895
1907
"seed" : 0 ,
1896
1908
"tool_choice" : "string" ,
1897
1909
"stream" : True ,
1910
+ "parallel_tool_calls" : True ,
1898
1911
},
1899
1912
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
1900
1913
) as response :
@@ -2018,6 +2031,7 @@ async def test_path_params_update(self, async_client: AsyncPromptFoundry) -> Non
2018
2031
"seed" : 0 ,
2019
2032
"tool_choice" : "string" ,
2020
2033
"stream" : True ,
2034
+ "parallel_tool_calls" : True ,
2021
2035
},
2022
2036
tools = [{"tool_id" : "string" }, {"tool_id" : "string" }, {"tool_id" : "string" }],
2023
2037
)
0 commit comments