Commit
·
5aeeef7
1
Parent(s):
25632bd
Audio-to-text model migration
Browse files
utils.py
CHANGED
@@ -364,7 +364,7 @@ def transcript_audio_file(client, file_path: str) -> str:
|
|
364 |
|
365 |
transcription = client.audio.transcriptions.create(
|
366 |
file=file, # Required audio file
|
367 |
-
model="
|
368 |
language="en", # Optional
|
369 |
)
|
370 |
return transcription
|
|
|
364 |
|
365 |
transcription = client.audio.transcriptions.create(
|
366 |
file=file, # Required audio file
|
367 |
+
model="whisper-large-v3-turbo", # Required model to use for transcription
|
368 |
language="en", # Optional
|
369 |
)
|
370 |
return transcription
|