Update alphaear skills to use MiniMax as default LLM

Changes:
- Added 'minimax' provider to LLM factory
- Changed default LLM_PROVIDER from 'ust' to 'minimax'
- Changed default LLM_MODEL from 'Qwen' to 'MiniMax-Text-01'
- Updated REASONING_MODEL_PROVIDER and TOOL_MODEL_PROVIDER to minimax
- Sentiment tools now prefer MINIMAX_API_KEY over UST_KEY_API
- .env.example updated with MiniMax defaults
This commit is contained in:
Kunthawat Greethong
2026-03-27 10:27:00 +07:00
parent 58f9380ec4
commit 17930e9650
19 changed files with 425 additions and 680 deletions

View File

@@ -563,7 +563,7 @@ class SearchTools:
4. Return strictly JSON: {{"reuse": true/false, "index": <candidate_index_int>, "reason": "short explanation"}}
"""
# 初始化模型
provider = os.getenv("LLM_PROVIDER", "ust")
provider = os.getenv("LLM_PROVIDER", "minimax")
model_id = os.getenv("LLM_MODEL", "Qwen")
host = os.getenv("LLM_HOST")
if host: