nickprock commited on
Commit
e1bf863
·
1 Parent(s): 5306275

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -91,6 +91,7 @@ demo = gr.Interface(fn=greet,
91
  outputs="text",
92
  title="Banking Intent Classifier",
93
  description="Try to classify customer queries",
94
- examples=[["I can't pay by my credit card"],["My card still hasn't been delivered"],["Can I track the card you sent to me?"]])
 
95
 
96
- demo.launch(debug = True, enable_queue = False)
 
91
  outputs="text",
92
  title="Banking Intent Classifier",
93
  description="Try to classify customer queries",
94
+ examples=[["I can't pay by my credit card"],["My card still hasn't been delivered"],["Can I track the card you sent to me?"]],
95
+ cache_examples=False)
96
 
97
+ demo.launch()