Spaces:
Runtime error
Runtime error
Commit
·
354025a
1
Parent(s):
c6c6f6f
Fix bug with function name
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ with gr.Blocks() as demo:
|
|
58 |
with gr.Column():
|
59 |
transcript_output = gr.Textbox(label="Transcription in the language you spoke")
|
60 |
|
61 |
-
transcribe_audio.click(
|
62 |
|
63 |
|
64 |
demo.launch()
|
|
|
58 |
with gr.Column():
|
59 |
transcript_output = gr.Textbox(label="Transcription in the language you spoke")
|
60 |
|
61 |
+
transcribe_audio.click(translate_and_classify, inputs = audio_input, outputs = transcript_output)
|
62 |
|
63 |
|
64 |
demo.launch()
|