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