Mehrdad Esmaeili commited on
Commit
bf3cf08
1 Parent(s): 5464ccc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -55,12 +55,12 @@ def predict(message, history):
55
 
56
 
57
 
58
- # gr.ChatInterface(predict,
59
- # chatbot=gr.Chatbot(height='auto'),
60
- # textbox=gr.Textbox(placeholder="Recommend a book on someone who..."),
61
- # title="Amazon But Better",
62
- # description="Amazon started out with selling books. However, searching books on \
63
- # Amazon is tedious and inaccurate if you don't know what you are exactly looking for. why not \
64
- # make it faster and easier with LLMs:)").launch()
65
- gr.ChatInterface(predict).launch()
66
 
 
55
 
56
 
57
 
58
+ gr.ChatInterface(predict,
59
+ chatbot=gr.Chatbot(height='auto'),
60
+ textbox=gr.Textbox(placeholder="Recommend a book on someone who..."),
61
+ title="Amazon But Better",
62
+ description="Amazon started out with selling books. However, searching books on \
63
+ Amazon is tedious and inaccurate if you don't know what you are exactly looking for. why not \
64
+ make it faster and easier with LLMs:)").launch()
65
+ # gr.ChatInterface(predict).launch()
66