Spaces:
Build error
Build error
Update app.py
Browse files
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():
|