Update app.py
Browse files
app.py
CHANGED
|
@@ -90,7 +90,7 @@ with gr.Blocks() as demo:
|
|
| 90 |
btn = gr.Button("Send")
|
| 91 |
with gr.Column():
|
| 92 |
# type="messages" creates the dictionary format seen in your docs
|
| 93 |
-
chatbot_ui = gr.Chatbot(label="Therapy History"
|
| 94 |
audio_out = gr.Audio(autoplay=True)
|
| 95 |
|
| 96 |
btn.click(main_orchestrator, [audio_in, text_in, state], [chatbot_ui, audio_out])
|
|
|
|
| 90 |
btn = gr.Button("Send")
|
| 91 |
with gr.Column():
|
| 92 |
# type="messages" creates the dictionary format seen in your docs
|
| 93 |
+
chatbot_ui = gr.Chatbot(label="Therapy History")
|
| 94 |
audio_out = gr.Audio(autoplay=True)
|
| 95 |
|
| 96 |
btn.click(main_orchestrator, [audio_in, text_in, state], [chatbot_ui, audio_out])
|