abidlabs HF staff commited on
Commit
1091ff9
1 Parent(s): c33e724

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,6 +3,6 @@ import gradio as gr
3
  whisper = gr.load("models/openai/whisper-small")
4
 
5
  def transcribe(audio):
6
- return whisper(audio).text
7
 
8
  gr.Interface(transcribe, gr.Audio(type="filepath"), gr.Textbox()).launch()
 
3
  whisper = gr.load("models/openai/whisper-small")
4
 
5
  def transcribe(audio):
6
+ return whisper(audio)
7
 
8
  gr.Interface(transcribe, gr.Audio(type="filepath"), gr.Textbox()).launch()