VikranthBhat commited on
Commit
9fe70b7
·
verified ·
1 Parent(s): b15edfd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ app = FastAPI()
10
  # Get your token from Hugging Face Secrets (Settings > Secrets)
11
  HF_TOKEN = os.getenv("HF_TOKEN")
12
  # Model choice (e.g., "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct")
13
- MODEL_ID = "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct"
14
 
15
  client = InferenceClient(model=MODEL_ID, token=HF_TOKEN)
16
 
 
10
  # Get your token from Hugging Face Secrets (Settings > Secrets)
11
  HF_TOKEN = os.getenv("HF_TOKEN")
12
  # Model choice (e.g., "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct")
13
+ MODEL_ID = "Qwen/Qwen2.5-Coder-32B-Instruct" #"deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct"
14
 
15
  client = InferenceClient(model=MODEL_ID, token=HF_TOKEN)
16