yxmauw commited on
Commit
b24a356
1 Parent(s): d471766

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -125,9 +125,8 @@ with gr.Blocks() as demo:
125
  label="LLMs to choose from"
126
  )
127
  with gr.Column(scale=4):
128
- chatbot = gr.Chatbot(label="Conversation")
129
- chatbot.queue("How may I help you today?")
130
-
131
  message = gr.Textbox(label="Message")
132
  state = gr.State()
133
 
 
125
  label="LLMs to choose from"
126
  )
127
  with gr.Column(scale=4):
128
+ chatbot = gr.Chatbot(label="Conversation", value="How may I help you today?")
129
+
 
130
  message = gr.Textbox(label="Message")
131
  state = gr.State()
132