Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|