Spaces:
Running
Running
File size: 370 Bytes
f689fa0 |
1 2 3 4 5 6 7 8 9 10 11 |
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() |