jlvdoorn commited on
Commit
a5fc779
1 Parent(s): c61758c

Hopeful fix for examples

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ def transcribeAndExtract(audio, transcribe_only, model_version):
67
  #%%
68
  file_iface = gr.Interface(
69
  fn = transcribeAndExtract,
70
- inputs = [gr.Audio(source='upload', type='filepath', interactive=True),
71
  gr.Checkbox(label='Transcribe only', default=False),
72
  gr.Dropdown(choices=['large-v2', 'large-v3'], value='large-v3', label='Whisper model version')
73
  ],
 
67
  #%%
68
  file_iface = gr.Interface(
69
  fn = transcribeAndExtract,
70
+ inputs = [gr.Audio(source='upload', interactive=True),
71
  gr.Checkbox(label='Transcribe only', default=False),
72
  gr.Dropdown(choices=['large-v2', 'large-v3'], value='large-v3', label='Whisper model version')
73
  ],