@@ -171,7 +171,7 @@ def test_diarization_default(self, sync_together_client):
171171
172172 response = sync_together_client .audio .transcriptions .create (
173173 file = audio_url ,
174- model = "openai/whisper-large-v3-test " ,
174+ model = "openai/whisper-large-v3" ,
175175 response_format = "verbose_json" ,
176176 diarize = True ,
177177 )
@@ -192,7 +192,7 @@ def test_diarization_nvidia(self, sync_together_client):
192192
193193 response = sync_together_client .audio .transcriptions .create (
194194 file = audio_url ,
195- model = "openai/whisper-large-v3-test " ,
195+ model = "openai/whisper-large-v3" ,
196196 response_format = "verbose_json" ,
197197 diarize = True ,
198198 diarization_model = "nvidia" ,
@@ -214,7 +214,7 @@ def test_diarization_pyannote(self, sync_together_client):
214214
215215 response = sync_together_client .audio .transcriptions .create (
216216 file = audio_url ,
217- model = "openai/whisper-large-v3-test " ,
217+ model = "openai/whisper-large-v3" ,
218218 response_format = "verbose_json" ,
219219 diarize = True ,
220220 diarization_model = "pyannote" ,
@@ -236,7 +236,7 @@ def test_no_diarization(self, sync_together_client):
236236
237237 response = sync_together_client .audio .transcriptions .create (
238238 file = audio_url ,
239- model = "openai/whisper-large-v3-test " ,
239+ model = "openai/whisper-large-v3" ,
240240 response_format = "verbose_json" ,
241241 diarize = False ,
242242 )
0 commit comments