Spaces:
Sleeping
Sleeping
Saif Rehman Nasir
commited on
Commit
·
cade13f
1
Parent(s):
98f4015
Add buttion
Browse files
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 |
-
|
380 |
-
|
381 |
-
|
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 |
|