Skip to content

Commit 514a7b5

Browse files
committed
Change model in test
1 parent 5e5d018 commit 514a7b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_compatibility.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ def test_tts_voice_to_string_detailed(self):
218218

219219
def test_create_asr_programs_detailed(self):
220220
"""Test creating ASR programs with streaming and non-streaming models."""
221-
models = ["whisper-1", "whisper-2"]
222-
streaming_models = ["whisper-2"]
221+
models = ["whisper-1", "gpt-4o-mini-transcribe"]
222+
streaming_models = ["gpt-4o-mini-transcribe"]
223223
base_url = "https://api.openai.com"
224224
languages = ["en", "fr"]
225225

@@ -233,7 +233,7 @@ def test_create_asr_programs_detailed(self):
233233

234234
# Check streaming program
235235
assert len(streaming_prog.models) == 1
236-
assert streaming_prog.models[0].name == "whisper-2"
236+
assert streaming_prog.models[0].name == "gpt-4o-mini-transcribe"
237237
assert streaming_prog.supports_transcript_streaming
238238
assert streaming_prog.attribution.name == ATTRIBUTION_NAME_PROGRAM_STREAMING
239239

0 commit comments

Comments
 (0)