felixmortas commited on
Commit
5aeeef7
·
1 Parent(s): 25632bd

Audio-to-text model migration

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
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="distil-whisper-large-v3-en", # Required model to use for transcription
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