Change default model from Gemini 2.5 Pro to Moonshot Kimi K2 Thinking
- Updated DEFAULT_MODEL fallback in config.py - Updated .env locally (not tracked in git) - Updated Claude Desktop config The Kimi K2 Thinking model will now be used for all analytical and strategic work by default.
This commit is contained in:
parent
168f237fa5
commit
0bcdffd55b
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ __author__ = "Ben (based on Zen MCP Server by Fahad Gilani)"
|
||||||
# Model configuration
|
# Model configuration
|
||||||
# DEFAULT_MODEL: The default model used for all AI operations
|
# DEFAULT_MODEL: The default model used for all AI operations
|
||||||
# Can be overridden by setting DEFAULT_MODEL environment variable
|
# Can be overridden by setting DEFAULT_MODEL environment variable
|
||||||
DEFAULT_MODEL = os.getenv("DEFAULT_MODEL", "google/gemini-2.5-pro-latest")
|
DEFAULT_MODEL = os.getenv("DEFAULT_MODEL", "moonshotai/kimi-k2-thinking")
|
||||||
|
|
||||||
# Fast model for quick operations (variations, subject lines)
|
# Fast model for quick operations (variations, subject lines)
|
||||||
FAST_MODEL = os.getenv("FAST_MODEL", "google/gemini-2.5-flash-preview-09-2025")
|
FAST_MODEL = os.getenv("FAST_MODEL", "google/gemini-2.5-flash-preview-09-2025")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue