Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ with gr.Blocks() as demo:
|
|
27 |
|
28 |
|
29 |
btn = gr.Button("Generate")
|
30 |
-
btn.click(fn=
|
31 |
radio.change(toggle, radio, [mic_input, audio_file])
|
32 |
|
33 |
demo.launch(enable_queue=True)
|
|
|
27 |
|
28 |
|
29 |
btn = gr.Button("Generate")
|
30 |
+
btn.click(fn=inference,inputs=[audio_file, text_input, mic_input], outputs=audio_output)
|
31 |
radio.change(toggle, radio, [mic_input, audio_file])
|
32 |
|
33 |
demo.launch(enable_queue=True)
|