Update app.py
Browse files
app.py
CHANGED
@@ -347,11 +347,11 @@ with gr.Blocks(title="π Climate Q&A", css="style.css", theme=theme) as demo:
|
|
347 |
with gr.Row():
|
348 |
with gr.Column(scale=2):
|
349 |
# state = gr.State([system_template])
|
350 |
-
bot = gr.Chatbot(height=400,show_copy_button=True,show_label = False)
|
351 |
|
352 |
with gr.Row():
|
353 |
with gr.Column(scale = 7):
|
354 |
-
textbox=gr.Textbox(placeholder="Ask me a question about climate change or biodiversity in any language
|
355 |
with gr.Column(scale = 1):
|
356 |
submit_button = gr.Button("Submit")
|
357 |
|
|
|
347 |
with gr.Row():
|
348 |
with gr.Column(scale=2):
|
349 |
# state = gr.State([system_template])
|
350 |
+
bot = gr.Chatbot(height=400,show_copy_button=True,show_label = False,elem_id="chatbot")
|
351 |
|
352 |
with gr.Row():
|
353 |
with gr.Column(scale = 7):
|
354 |
+
textbox=gr.Textbox(placeholder="Ask me a question about climate change or biodiversity in any language!",show_label=False)
|
355 |
with gr.Column(scale = 1):
|
356 |
submit_button = gr.Button("Submit")
|
357 |
|