Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ def chat_gen(message, history):
|
|
97 |
partial_message = partial_message + chunk.choices[0].delta.content
|
98 |
yield partial_message
|
99 |
|
100 |
-
initial_msg = "Hello! I am
|
101 |
chatbot = gr.Chatbot(value = [[None, initial_msg]])
|
102 |
demo = gr.ChatInterface(chat_gen, chatbot=chatbot).queue()
|
103 |
|
|
|
97 |
partial_message = partial_message + chunk.choices[0].delta.content
|
98 |
yield partial_message
|
99 |
|
100 |
+
initial_msg = "Hello! I am DDI assistant. You can ask me anything about DDI program. I am happy to assist you."
|
101 |
chatbot = gr.Chatbot(value = [[None, initial_msg]])
|
102 |
demo = gr.ChatInterface(chat_gen, chatbot=chatbot).queue()
|
103 |
|