Unizomby commited on
Commit
d43c0b9
·
verified ·
1 Parent(s): 3cf3cc6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -24,6 +24,10 @@ iface = gr.Interface(fn=chatbot_response,
24
  inputs="text",
25
  outputs="text",
26
  title="My Personal Chatbot",
27
- description="Ask questions and receive answers based on my personal documents.")
 
 
 
 
28
 
29
  iface.launch()
 
24
  inputs="text",
25
  outputs="text",
26
  title="My Personal Chatbot",
27
+ description="Ask questions and receive answers based on my personal documents."
28
+ examples=[["Provide a summary of Donald?"],
29
+ ["Has Donald worked with Python?"],
30
+ ["Tell me something interesting about Donald"]]
31
+ )
32
 
33
  iface.launch()