mgokg commited on
Commit
1496089
·
verified ·
1 Parent(s): 0aae4d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(transcribe_audio, inputs=sr_inputs, outputs=sr_outputs)
47
 
48
- speech.launch(fn=audio_to_audio_chatbot)
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