Spaces:
Sleeping
Sleeping
File size: 444 Bytes
082f7c1 fd7fa45 082f7c1 fd7fa45 48e1009 fd7fa45 48e1009 082f7c1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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() |