teddyllm commited on
Commit
db50b64
·
verified ·
1 Parent(s): 1085f81

update the chat bubble style

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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]], bubble_full_width=False)
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