MightyOctopus commited on
Commit
e7c6dac
·
verified ·
1 Parent(s): e55b32e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -241,7 +241,10 @@ def chat(query, history):
241
  yield response
242
 
243
 
244
- demo = gr.ChatInterface(fn=chat, type="messages", title="SEO Expert Bot")
 
 
 
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))