Update app.py
Browse files
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 |
-
|
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 |
|