diff --git a/backend/main.py b/backend/main.py index 9cf9be5..df1e68d 100644 --- a/backend/main.py +++ b/backend/main.py @@ -85,7 +85,7 @@ async def transcribe_audio(audio_bytes: bytes) -> str | None: client = get_openai() try: transcript = await client.audio.transcriptions.create( - model="gpt-realtime-whisper", + model="gpt-4o-transcribe", file=("audio.webm", audio_bytes, "audio/webm"), response_format="text", )