Spaces:
Sleeping
Sleeping
update the chat bubble style
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ def chat_gen(message, history):
|
|
56 |
|
57 |
|
58 |
initial_msg = "Hello! I am KCE assistant. You can ask me anything about KCE. I am happy to assist you."
|
59 |
-
chatbot = gr.Chatbot(value = [[None, initial_msg]]
|
60 |
demo = gr.ChatInterface(chat_gen, chatbot=chatbot).queue()
|
61 |
|
62 |
|
|
|
56 |
|
57 |
|
58 |
initial_msg = "Hello! I am KCE assistant. You can ask me anything about KCE. I am happy to assist you."
|
59 |
+
chatbot = gr.Chatbot(value = [[None, initial_msg]])
|
60 |
demo = gr.ChatInterface(chat_gen, chatbot=chatbot).queue()
|
61 |
|
62 |
|