Spaces:
Sleeping
Sleeping
update start message
Browse files- Gradio_UI.py +2 -1
Gradio_UI.py
CHANGED
@@ -262,7 +262,8 @@ class GradioUI:
|
|
262 |
import gradio as gr
|
263 |
|
264 |
with gr.Blocks(fill_height=True) as demo:
|
265 |
-
|
|
|
266 |
file_uploads_log = gr.State([])
|
267 |
chatbot = gr.Chatbot(
|
268 |
label="Agent",
|
|
|
262 |
import gradio as gr
|
263 |
|
264 |
with gr.Blocks(fill_height=True) as demo:
|
265 |
+
start_message = "Please provide a task for the agent to solve."
|
266 |
+
stored_messages = gr.State([gr.ChatMessage(role="assistant", content=start_message)])
|
267 |
file_uploads_log = gr.State([])
|
268 |
chatbot = gr.Chatbot(
|
269 |
label="Agent",
|