Saif Rehman Nasir commited on
Commit
cade13f
·
1 Parent(s): 98f4015

Add buttion

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -375,11 +375,11 @@ def chat_interface():
375
  )
376
  response_textbox = gr.Textbox(label="Response Text")
377
  audio_output = gr.Audio(label="Response Audio")
 
378
 
379
- # Link inputs and outputs
380
- audio_input.change(
381
- fn=get_chatbot_response,
382
- inputs=audio_input,
383
  outputs=[response_textbox, audio_output],
384
  )
385
 
 
375
  )
376
  response_textbox = gr.Textbox(label="Response Text")
377
  audio_output = gr.Audio(label="Response Audio")
378
+ btn = gr.Button(value="Submit")
379
 
380
+ btn.click(
381
+ get_chatbot_response,
382
+ inputs=[audio_input],
 
383
  outputs=[response_textbox, audio_output],
384
  )
385