ipvikas commited on
Commit
e34fa68
1 Parent(s): bf69abd

Update app.py

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