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()