MultiModelCoder / app.py
w1r4's picture
Update app.py
fd7fa45 verified
raw
history blame
444 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 DeepSeek-Coder-1.3B-Instruct model.")
button = gr.LoginButton("Sign in")
# Use the 1.3B model which is supported on the free tier
gr.load(
"models/deepseek-ai/deepseek-coder-1.3b-instruct",
accept_token=button
)
demo.launch()