Update app.py
Browse files
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()
|