Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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,
|
|
|
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__":
|