david-oplatka commited on
Commit
2bc028d
·
verified ·
1 Parent(s): 3c4dfb1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -59,8 +59,7 @@ with gr.Blocks() as demo:
59
  gr.HTML(image_html)
60
  gr.HTML(cfg.title)
61
  gr.HTML(cfg.description)
62
- chatbot = gr.Chatbot(value=[[None, "How may I help you?"]], scale=3)
63
- gr.ChatInterface(respond, chatbot=chatbot)
64
 
65
 
66
  if __name__ == "__main__":
 
59
  gr.HTML(image_html)
60
  gr.HTML(cfg.title)
61
  gr.HTML(cfg.description)
62
+ gr.ChatInterface(respond, chatbot=gr.Chatbot(value=[[None, "How may I help you?"]], scale=3))
 
63
 
64
 
65
  if __name__ == "__main__":