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

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-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
 
 
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 Qwen2.5-Coder-32B-Instruct model.")
7
  button = gr.LoginButton("Sign in")
8
 
9
+ # Qwen 2.5 Coder is currently the most robust open coding model supported on the API
10
  gr.load(
11
+ "models/Qwen/Qwen2.5-Coder-32B-Instruct",
12
  accept_token=button
13
  )
14