From f069f3ea74a6436c5870f792d1dc0cc50ff74380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Lucchesi?= Date: Sat, 12 Apr 2025 09:27:03 +0200 Subject: [PATCH] [Misc] Openai transcription client example use same Whisper model (#16487) Signed-off-by: NickLucche --- examples/online_serving/openai_transcription_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/online_serving/openai_transcription_client.py b/examples/online_serving/openai_transcription_client.py index 494e7c8ebe12a..062868dd8adf0 100644 --- a/examples/online_serving/openai_transcription_client.py +++ b/examples/online_serving/openai_transcription_client.py @@ -23,7 +23,7 @@ def sync_openai(): with open(str(mary_had_lamb), "rb") as f: transcription = client.audio.transcriptions.create( file=f, - model="openai/whisper-small", + model="openai/whisper-large-v3", language="en", response_format="json", temperature=0.0)