update to remove deprecation warnings (#5200)

This commit is contained in:
jonmatthis 2023-08-14 09:51:10 -04:00 committed by GitHub
parent 730f0c1d54
commit ae58f8985c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,14 +24,14 @@ def bot(history):
with gr.Blocks() as demo:
chatbot = gr.Chatbot([], elem_id="chatbot").style(height=750)
chatbot = gr.Chatbot([], elem_id="chatbot", height=750)
with gr.Row():
with gr.Column(scale=0.85):
txt = gr.Textbox(
show_label=False,
placeholder="Enter text and press enter, or upload an image",
).style(container=False)
container=False)
with gr.Column(scale=0.15, min_width=0):
btn = gr.UploadButton("📁", file_types=["image", "video", "audio"])