PabloVD commited on
Commit
16f3588
·
1 Parent(s): 5913991

Add description to chatbot

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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()