teddyllm commited on
Commit
caf1bb9
·
verified ·
1 Parent(s): 4a91290

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 DII 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
 
 
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