kingabzpro commited on
Commit
c350f94
1 Parent(s): f6b7671

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -59,4 +59,10 @@ def predict(message, history):
59
  gr.ChatInterface(predictfn=predict,
60
  title=title,
61
  description=description,
62
- examples=examples).queue().launch()
 
 
 
 
 
 
 
59
  gr.ChatInterface(predictfn=predict,
60
  title=title,
61
  description=description,
62
+ examples=examples,
63
+ cache_examples=True,
64
+ retry_btn=None,
65
+ undo_btn="Delete Previous",
66
+ clear_btn="Clear",
67
+ chatbot=gr.Chatbot(height=300),
68
+ textbox=gr.Textbox(placeholder="Chat with me")).queue().launch()