import gradio as gr with gr.Blocks() as demo: dropdown = gr.Dropdown(multiselect=True, choices="llama 4 (scout), gemma 3 (27b)", value="llama 4 (scout), gemma 3 (27b)") with gr.Row(): image = gr.Image(type="filepath") chatbot = gr.Chatbot(type="messages") chatbot_2 = gr.Chatbot(type="messages") textbox = gr.Textbox() demo.launch()