smol-arena / app.py
abidlabs's picture
abidlabs HF Staff
initial commit
f689fa0 verified
raw
history blame
370 Bytes
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()