Update app.py
Browse files
app.py
CHANGED
@@ -126,6 +126,8 @@ with gr.Blocks() as demo:
|
|
126 |
)
|
127 |
with gr.Column(scale=4):
|
128 |
chatbot = gr.Chatbot(label="Conversation")
|
|
|
|
|
129 |
message = gr.Textbox(label="Message")
|
130 |
state = gr.State()
|
131 |
|
|
|
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 |
|