camparchimedes commited on
Commit
b6ce02f
·
verified ·
1 Parent(s): 49113b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -263,9 +263,8 @@ with iface:
263
  text_output = gr.Textbox()
264
  system_info = gr.Textbox(label="System Info")
265
 
266
- transcribe_btn.click(transcribe_audio,
267
- [microphone, upload], [text_output]
268
- [system_info]
269
  )
270
 
271
  with gr.Tabs():
 
263
  text_output = gr.Textbox()
264
  system_info = gr.Textbox(label="System Info")
265
 
266
+ transcribe_btn.click(fn=transcribe_audio,
267
+ [microphone, upload], outputs=[text_output, system_info]
 
268
  )
269
 
270
  with gr.Tabs():