Update app.py
Browse files
app.py
CHANGED
|
@@ -43,7 +43,7 @@ with gr.Blocks() as speech:
|
|
| 43 |
sr_outputs = gr.Textbox(label="Antwort")
|
| 44 |
with gr.Row():
|
| 45 |
sr_inputs = gr.Microphone(type="filepath")
|
| 46 |
-
sr_inputs.change(
|
| 47 |
|
| 48 |
-
speech.launch(
|
| 49 |
|
|
|
|
| 43 |
sr_outputs = gr.Textbox(label="Antwort")
|
| 44 |
with gr.Row():
|
| 45 |
sr_inputs = gr.Microphone(type="filepath")
|
| 46 |
+
sr_inputs.change(audio_to_audio_chatbot, inputs=sr_inputs, outputs=sr_outputs)
|
| 47 |
|
| 48 |
+
speech.launch()
|
| 49 |
|