(self, async_client: AsyncOpenAI)
| 787 | |
| 788 | @parametrize |
| 789 | async def test_method_remix(self, async_client: AsyncOpenAI) -> None: |
| 790 | video = await async_client.videos.remix( |
| 791 | video_id="video_123", |
| 792 | prompt="x", |
| 793 | ) |
| 794 | assert_matches_type(Video, video, path=["response"]) |
| 795 | |
| 796 | @parametrize |
| 797 | async def test_raw_response_remix(self, async_client: AsyncOpenAI) -> None: |
nothing calls this directly
no test coverage detected