Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -262,10 +262,9 @@ with iface:
|
|
262 |
transcribe_btn = gr.Button("Transcribe Interview")
|
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():
|
271 |
|
|
|
262 |
transcribe_btn = gr.Button("Transcribe Interview")
|
263 |
text_output = gr.Textbox()
|
264 |
system_info = gr.Textbox(label="System Info")
|
265 |
+
# --basic syntax!: positional argument ")" follows keyword argument, e.g ..., system_info :P
|
266 |
+
transcribe_btn.click(fn=transcribe_audio,[microphone, upload], outputs=[text_output, system_info])
|
267 |
|
|
|
|
|
|
|
268 |
|
269 |
with gr.Tabs():
|
270 |
|