Update app.py
Browse files
app.py
CHANGED
@@ -216,10 +216,10 @@ def get_response(input_text):
|
|
216 |
|
217 |
title = "WeASK: ChatBOT"
|
218 |
description = "Hi!! enter your query here"
|
219 |
-
|
220 |
-
|
221 |
|
222 |
-
|
223 |
|
224 |
chatbot_demo = gr.Interface(fn=get_response, inputs = 'text',outputs='text',title = title, description = description, examples = examples)
|
225 |
chatbot_demo.launch()
|
|
|
216 |
|
217 |
title = "WeASK: ChatBOT"
|
218 |
description = "Hi!! enter your query here"
|
219 |
+
examples = [
|
220 |
+
["from wikipedia what is calculus"]
|
221 |
|
222 |
+
]
|
223 |
|
224 |
chatbot_demo = gr.Interface(fn=get_response, inputs = 'text',outputs='text',title = title, description = description, examples = examples)
|
225 |
chatbot_demo.launch()
|