RamAnanth1 commited on
Commit
354025a
·
1 Parent(s): c6c6f6f

Fix bug with function name

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(translate, inputs = audio_input, outputs = transcript_output)
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()