Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -89,7 +89,7 @@ import os
|
|
89 |
def transcribe_audio(audio_file):
|
90 |
result=convert_to_text(audio_file)
|
91 |
return result
|
92 |
-
demo = gr.Interface(
|
93 |
[gr.File(label="Upload Audio")],
|
94 |
[gr.Textbox(label="Transcribe")],
|
95 |
)
|
|
|
89 |
def transcribe_audio(audio_file):
|
90 |
result=convert_to_text(audio_file)
|
91 |
return result
|
92 |
+
demo = gr.Interface(transcribe_audio,
|
93 |
[gr.File(label="Upload Audio")],
|
94 |
[gr.Textbox(label="Transcribe")],
|
95 |
)
|