david-oplatka commited on
Commit
3ba4412
·
verified ·
1 Parent(s): 14b1604

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ cfg.description = f'''<img src="https://github.com/david-oplatka/chatbot-streaml
46
  <br>
47
  This demo uses Retrieval Augmented Generation to ask questions about {cfg.source_data_desc}</center>'''
48
 
49
- gr.ChatInterface(respond, title = cfg.title, description = cfg.description, chatbot = gr.Chatbot(value = [[None, "How may I help you?"]], scale=3))
50
 
51
 
52
  if __name__ == "__main__":
 
46
  <br>
47
  This demo uses Retrieval Augmented Generation to ask questions about {cfg.source_data_desc}</center>'''
48
 
49
+ demo = gr.ChatInterface(respond, title = cfg.title, description = cfg.description, chatbot = gr.Chatbot(value = [[None, "How may I help you?"]], scale=3))
50
 
51
 
52
  if __name__ == "__main__":