david-oplatka commited on
Commit
841b907
·
verified ·
1 Parent(s): c973f84

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -48,7 +48,8 @@ cfg.description = f'''<center> <h2>{cfg.description}</h2>
48
  This demo uses Retrieval Augmented Generation to ask questions about {cfg.source_data_desc}</center>
49
  '''
50
 
51
- demo = gr.ChatInterface(respond, title = cfg.title, description = cfg.description, chatbot = gr.Chatbot(value = [[None, "How may I help you?"]], scale=3))
 
52
 
53
 
54
  if __name__ == "__main__":
 
48
  This demo uses Retrieval Augmented Generation to ask questions about {cfg.source_data_desc}</center>
49
  '''
50
 
51
+ demo = gr.ChatInterface(respond, title = cfg.title, description = cfg.description,
52
+ chatbot = gr.Chatbot(value = [[None, "How may I help you?"]], scale=3), examples = ["Hello", "Hi", "How are you?"])
53
 
54
 
55
  if __name__ == "__main__":