Spaces:
Running
Running
Update Gradio_UI.py
Browse files- Gradio_UI.py +4 -4
Gradio_UI.py
CHANGED
@@ -343,10 +343,10 @@ class GradioUI:
|
|
343 |
[text_input, file_uploads_log],
|
344 |
[stored_messages, text_input],
|
345 |
).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
gr.Markdown( agent_footer )
|
351 |
|
352 |
demo.launch(debug=True, share=True, **kwargs)
|
|
|
343 |
[text_input, file_uploads_log],
|
344 |
[stored_messages, text_input],
|
345 |
).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
|
346 |
+
gr.Examples(
|
347 |
+
examples=get_examples(),
|
348 |
+
inputs=text_input
|
349 |
+
)
|
350 |
gr.Markdown( agent_footer )
|
351 |
|
352 |
demo.launch(debug=True, share=True, **kwargs)
|