feat(models): upgrade MiniMax provider to M3 as default#185
Merged
helloml0326 merged 1 commit intoJun 9, 2026
Merged
Conversation
Add MiniMax-M3 to MINIMAX_MODELS and make it the new default for MiniMaxChatModel. Keep M2.7 and M2.7-highspeed for backward compatibility; remove the older M2.5 / M2.5-highspeed entries. - openjudge/models/minimax_chat_model.py: update MINIMAX_MODELS, default model, docstrings, and example. - tests/models/test_minimax_chat_model.py: switch default-model assertion to M3, swap M2.5 in the custom-model test for M2.7, add coverage for M3 in MINIMAX_MODELS, and update integration tests. - skills/mmx-cli/SKILL.md: bump text-generation model to M3. - cookbooks/auto_arena/examples/config.yaml: bump the MiniMax candidate example to M3. Co-Authored-By: Octopus <liyuan851277048@icloud.com>
helloml0326
approved these changes
Jun 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
OpenJudge Version
0.2.0Description
Upgrade the
MiniMaxChatModelprovider to use the new MiniMax-M3 as the default model, while keepingM2.7/M2.7-highspeedavailable as alternatives. The olderM2.5/M2.5-highspeedentries are removed from the supported list.Changes
openjudge/models/minimax_chat_model.pyMINIMAX_MODELSnow listsMiniMax-M3,MiniMax-M2.7,MiniMax-M2.7-highspeed(M3 first).modelparameter changed fromMiniMax-M2.7toMiniMax-M3.tests/models/test_minimax_chat_model.pytest_default_modelnow expectsMiniMax-M3.test_custom_modelusesMiniMax-M2.7(wasM2.5).test_minimax_models_contain_m3; list-length assertion relaxed to>= 3.MiniMax-M3.skills/mmx-cli/SKILL.mdMiniMax-M3.cookbooks/auto_arena/examples/config.yamlMiniMax-M3.The OpenAI-compatible base URL (
https://api.minimax.io/v1), temperature clamping,<think>stripping, and the rest of the model logic are unchanged.How to test
All 26 unit tests in this file pass locally; the wider
tests/models/unit suite (54 tests) also passes.Checklist
pre-commit(black/isort/flake8 on touched files clean)SKILL.md, cookbook example)