w1r4 commited on
Commit
fd7fa45
·
verified ·
1 Parent(s): 48e1009

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -3,12 +3,12 @@ import gradio as gr
3
  with gr.Blocks(fill_height=True) as demo:
4
  with gr.Sidebar():
5
  gr.Markdown("# Inference Provider")
6
- gr.Markdown("This Space showcases the DeepSeek-Coder-V2-Lite-Instruct model.")
7
  button = gr.LoginButton("Sign in")
8
 
9
- # Remove 'provider="nebius"'
10
  gr.load(
11
- "models/deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct",
12
  accept_token=button
13
  )
14
 
 
3
  with gr.Blocks(fill_height=True) as demo:
4
  with gr.Sidebar():
5
  gr.Markdown("# Inference Provider")
6
+ gr.Markdown("This Space showcases the DeepSeek-Coder-1.3B-Instruct model.")
7
  button = gr.LoginButton("Sign in")
8
 
9
+ # Use the 1.3B model which is supported on the free tier
10
  gr.load(
11
+ "models/deepseek-ai/deepseek-coder-1.3b-instruct",
12
  accept_token=button
13
  )
14