Spaces:
Sleeping
Sleeping
Fix OpenRouter model: use deepseek-chat-v3 (was invalid model)
Browse filesThe previous model openai/gpt-oss-120b:free doesn't exist (404).
Changed to deepseek/deepseek-chat-v3-0324:free which is a valid
free model on OpenRouter.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- src/llm_client.py +1 -1
src/llm_client.py
CHANGED
|
@@ -50,7 +50,7 @@ class LLMClient:
|
|
| 50 |
self.providers.append({
|
| 51 |
"name": "openrouter",
|
| 52 |
"key": openrouter_key,
|
| 53 |
-
"model": os.getenv("OPENROUTER_MODEL", "
|
| 54 |
"url": "https://openrouter.ai/api/v1/chat/completions"
|
| 55 |
})
|
| 56 |
|
|
|
|
| 50 |
self.providers.append({
|
| 51 |
"name": "openrouter",
|
| 52 |
"key": openrouter_key,
|
| 53 |
+
"model": os.getenv("OPENROUTER_MODEL", "deepseek/deepseek-chat-v3-0324:free"),
|
| 54 |
"url": "https://openrouter.ai/api/v1/chat/completions"
|
| 55 |
})
|
| 56 |
|