MultiModelCoder / app.py
w1r4's picture
Update app.py
ff4aed5 verified
raw
history blame
461 Bytes
import gradio as gr
with gr.Blocks(fill_height=True) as demo:
with gr.Sidebar():
gr.Markdown("# Inference Provider")
gr.Markdown("This Space showcases the Qwen2.5-Coder-32B-Instruct model.")
button = gr.LoginButton("Sign in")
# Qwen 2.5 Coder is currently the most robust open coding model supported on the API
gr.load(
"models/Qwen/Qwen2.5-Coder-32B-Instruct",
accept_token=button
)
demo.launch()