@@ -209,6 +209,7 @@ def test_path_params_list_handoff_attachments(self, client: OzAPI) -> None:
209209 def test_method_submit_followup (self , client : OzAPI ) -> None :
210210 run = client .agent .runs .submit_followup (
211211 run_id = "runId" ,
212+ message = "message" ,
212213 )
213214 assert_matches_type (object , run , path = ["response" ])
214215
@@ -227,6 +228,7 @@ def test_method_submit_followup_with_all_params(self, client: OzAPI) -> None:
227228 def test_raw_response_submit_followup (self , client : OzAPI ) -> None :
228229 response = client .agent .runs .with_raw_response .submit_followup (
229230 run_id = "runId" ,
231+ message = "message" ,
230232 )
231233
232234 assert response .is_closed is True
@@ -239,6 +241,7 @@ def test_raw_response_submit_followup(self, client: OzAPI) -> None:
239241 def test_streaming_response_submit_followup (self , client : OzAPI ) -> None :
240242 with client .agent .runs .with_streaming_response .submit_followup (
241243 run_id = "runId" ,
244+ message = "message" ,
242245 ) as response :
243246 assert not response .is_closed
244247 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -254,6 +257,7 @@ def test_path_params_submit_followup(self, client: OzAPI) -> None:
254257 with pytest .raises (ValueError , match = r"Expected a non-empty value for `run_id` but received ''" ):
255258 client .agent .runs .with_raw_response .submit_followup (
256259 run_id = "" ,
260+ message = "message" ,
257261 )
258262
259263
@@ -449,6 +453,7 @@ async def test_path_params_list_handoff_attachments(self, async_client: AsyncOzA
449453 async def test_method_submit_followup (self , async_client : AsyncOzAPI ) -> None :
450454 run = await async_client .agent .runs .submit_followup (
451455 run_id = "runId" ,
456+ message = "message" ,
452457 )
453458 assert_matches_type (object , run , path = ["response" ])
454459
@@ -467,6 +472,7 @@ async def test_method_submit_followup_with_all_params(self, async_client: AsyncO
467472 async def test_raw_response_submit_followup (self , async_client : AsyncOzAPI ) -> None :
468473 response = await async_client .agent .runs .with_raw_response .submit_followup (
469474 run_id = "runId" ,
475+ message = "message" ,
470476 )
471477
472478 assert response .is_closed is True
@@ -479,6 +485,7 @@ async def test_raw_response_submit_followup(self, async_client: AsyncOzAPI) -> N
479485 async def test_streaming_response_submit_followup (self , async_client : AsyncOzAPI ) -> None :
480486 async with async_client .agent .runs .with_streaming_response .submit_followup (
481487 run_id = "runId" ,
488+ message = "message" ,
482489 ) as response :
483490 assert not response .is_closed
484491 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -494,4 +501,5 @@ async def test_path_params_submit_followup(self, async_client: AsyncOzAPI) -> No
494501 with pytest .raises (ValueError , match = r"Expected a non-empty value for `run_id` but received ''" ):
495502 await async_client .agent .runs .with_raw_response .submit_followup (
496503 run_id = "" ,
504+ message = "message" ,
497505 )
0 commit comments