Fix default LLM model to claude-3-haiku (compatible with API key tier)

This commit is contained in:
2026-04-13 15:49:22 +00:00
parent a1454a0d05
commit 4ee0dc4c11
4 changed files with 84 additions and 2 deletions
+2 -2
View File
@@ -13,9 +13,9 @@ from shared import DASHBOARD_API, api_request
# Default models per provider
DEFAULT_MODELS = {
"anthropic": "claude-sonnet-4-5-20250514",
"anthropic": "claude-3-haiku-20240307",
"openai": "gpt-4o-mini",
"litellm": "anthropic/claude-sonnet-4-5-20250514",
"litellm": "anthropic/claude-3-haiku-20240307",
"ollama": "llama3",
}