(self, client: OpenAI)
| 384 | |
| 385 | @parametrize |
| 386 | def test_method_remix(self, client: OpenAI) -> None: |
| 387 | video = client.videos.remix( |
| 388 | video_id="video_123", |
| 389 | prompt="x", |
| 390 | ) |
| 391 | assert_matches_type(Video, video, path=["response"]) |
| 392 | |
| 393 | @parametrize |
| 394 | def test_raw_response_remix(self, client: OpenAI) -> None: |
nothing calls this directly
no test coverage detected