Spaces:
Sleeping
Sleeping
Add description to chatbot
Browse files
app.py
CHANGED
@@ -67,7 +67,8 @@ def handle_prompt(query, history):
|
|
67 |
except:
|
68 |
raise gr.Error("Requests rate limit exceeded")
|
69 |
|
|
|
70 |
|
71 |
-
demo = gr.ChatInterface(handle_prompt, type="messages", title="Medieval ChatBot", theme=gr.themes.Citrus())
|
72 |
|
73 |
demo.launch()
|
|
|
67 |
except:
|
68 |
raise gr.Error("Requests rate limit exceeded")
|
69 |
|
70 |
+
description = "A MistralAI powered chatbot which talks in the way of ancient times, using Langchain and deployed with Gradio."
|
71 |
|
72 |
+
demo = gr.ChatInterface(handle_prompt, type="messages", title="Medieval ChatBot", theme=gr.themes.Citrus(), description=description)
|
73 |
|
74 |
demo.launch()
|