Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -241,7 +241,10 @@ def chat(query, history):
|
|
| 241 |
yield response
|
| 242 |
|
| 243 |
|
| 244 |
-
demo = gr.ChatInterface(
|
|
|
|
|
|
|
|
|
|
| 245 |
|
| 246 |
if __name__ == "__main__":
|
| 247 |
port = int(os.getenv("PORT", 7860))
|
|
|
|
| 241 |
yield response
|
| 242 |
|
| 243 |
|
| 244 |
+
demo = gr.ChatInterface(
|
| 245 |
+
fn=chat, type="messages", title="SEO Expert Bot",
|
| 246 |
+
description="SEO specialist chatbot, built in a RAG system using 1000 pages volume of SEO hack documents as an external data resource(vector db)"
|
| 247 |
+
)
|
| 248 |
|
| 249 |
if __name__ == "__main__":
|
| 250 |
port = int(os.getenv("PORT", 7860))
|