diff --git a/conf/llm_factories.json b/conf/llm_factories.json index f9551ccf47..5a61d20064 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -1340,6 +1340,13 @@ "rank": "810", "url": "https://api.minimaxi.com/v1", "llm": [ + { + "llm_name": "MiniMax-M3", + "tags": "LLM,CHAT,1M", + "max_tokens": 1000000, + "model_type": "chat", + "is_tools": true + }, { "llm_name": "MiniMax-M2.7", "tags": "LLM,CHAT,200k", diff --git a/conf/models/minimax.json b/conf/models/minimax.json index 49aa6700a2..a42030fc60 100644 --- a/conf/models/minimax.json +++ b/conf/models/minimax.json @@ -12,6 +12,17 @@ }, "class": "minimax", "models": [ + { + "name": "MiniMax-M3", + "max_tokens": 1000000, + "model_types": [ + "chat" + ], + "thinking": { + "default_value": true, + "clear_thinking": true + } + }, { "name": "minimax-m2.7", "max_tokens": 204800, @@ -108,4 +119,4 @@ ] } ] -} \ No newline at end of file +}