Commit ·
4ad0ce1
1
Parent(s): bcdc55d
fix(config): update MiniMax model identifier to MiniMax-M2.5-highspeed
Browse files- agent/api/api.py +1 -1
agent/api/api.py
CHANGED
|
@@ -10,5 +10,5 @@ def get_llm():
|
|
| 10 |
global _llm
|
| 11 |
if _llm is None:
|
| 12 |
# _llm = ChatGoogleGenerativeAI(model="gemini-3-flash-preview")
|
| 13 |
-
_llm = MiniMaxChat(model="
|
| 14 |
return _llm
|
|
|
|
| 10 |
global _llm
|
| 11 |
if _llm is None:
|
| 12 |
# _llm = ChatGoogleGenerativeAI(model="gemini-3-flash-preview")
|
| 13 |
+
_llm = MiniMaxChat(model="MiniMax-M2.5-highspeed")
|
| 14 |
return _llm
|