Spaces:
Sleeping
Sleeping
adding a title to the spaces and updating the readme.
Browse files- Gradio_UI.py +1 -0
- README.md +1 -1
- app.py +1 -1
Gradio_UI.py
CHANGED
|
@@ -264,6 +264,7 @@ class GradioUI:
|
|
| 264 |
with gr.Blocks(fill_height=True) as demo:
|
| 265 |
stored_messages = gr.State([])
|
| 266 |
file_uploads_log = gr.State([])
|
|
|
|
| 267 |
chatbot = gr.Chatbot(
|
| 268 |
label="Agent",
|
| 269 |
type="messages",
|
|
|
|
| 264 |
with gr.Blocks(fill_height=True) as demo:
|
| 265 |
stored_messages = gr.State([])
|
| 266 |
file_uploads_log = gr.State([])
|
| 267 |
+
gr.Markdown("<h1 style='text-align: center;'>Agent able to search the web, generate image, retrieves local time for any timezone and search wikipedia</h1>")
|
| 268 |
chatbot = gr.Chatbot(
|
| 269 |
label="Agent",
|
| 270 |
type="messages",
|
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: ⚡
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: yellow
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Versatile agent
|
| 3 |
emoji: ⚡
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: yellow
|
app.py
CHANGED
|
@@ -85,4 +85,4 @@ agent = CodeAgent(
|
|
| 85 |
)
|
| 86 |
|
| 87 |
|
| 88 |
-
GradioUI(agent).launch()
|
|
|
|
| 85 |
)
|
| 86 |
|
| 87 |
|
| 88 |
+
GradioUI(agent,).launch()
|