feat(minimax): add MiniMax-M3 as default, drop older M2.5/M2.1/M2#2855
Merged
Merged
Conversation
- Add MINIMAX_M3 = "MiniMax-M3" constant and put it first in MODEL_LIST - Default MinimaxBot model: MiniMax-M2.7 -> MiniMax-M3 - Keep MiniMax-M2.7 and MiniMax-M2.7-highspeed as legacy options - Drop MINIMAX_M2_5 / MINIMAX_M2_1 / MINIMAX_M2_1_LIGHTNING / MINIMAX_M2 - Update web console recommended/provider model lists - Update README capability table and docs/models index (en/zh/ja) - Update docs/models/minimax.mdx and coding-plan.mdx MiniMax section - Update run.sh / run.ps1 installer default and menu hint - Update zh CLI status sample output - Update unit tests to assert new M3 default and constant TTS (speech-2.*) and API base URL remain unchanged.
Owner
|
looks good to merge, clean, well-scoped MiniMax-M3 upgrade with all old-constant references and tests updated |
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.
Summary
Add
MiniMax-M3as the new default chat model for the MiniMax provider, keepMiniMax-M2.7andMiniMax-M2.7-highspeedas legacy options, and remove the olderMiniMax-M2.5 / M2.1 / M2.1-lightning / M2from the registered model list.Changes
common/const.py: addMINIMAX_M3 = "MiniMax-M3", place it at the front of the MiniMax group inMODEL_LIST, dropMINIMAX_M2_5 / MINIMAX_M2_1 / MINIMAX_M2_1_LIGHTNING / MINIMAX_M2constants.models/minimax/minimax_bot.py: switch the fallback default fromMiniMax-M2.7toMiniMax-M3.channel/web/web_channel.py: update_RECOMMENDED_MODELSand thePROVIDER_MODELS["minimax"]["models"]selectable list to[M3, M2.7, M2.7-highspeed].README.md,docs/{,zh,ja}/README.md,docs/{,zh,ja}/models/index.mdx,docs/{,zh,ja}/models/minimax.mdx,docs/{,zh,ja}/models/coding-plan.mdx): refresh the capability table and configuration examples to featureMiniMax-M3.docs/zh/cli/general.mdx,docs/zh/cli/process.mdx: bump the exampleModel:output toMiniMax-M3.run.sh,scripts/run.ps1: update the installer menu hint and default model for the MiniMax option.tests/test_minimax_provider.py: assert the newMINIMAX_M3constant, M3 membership inMODEL_LIST, andMinimaxBotdefaulting toMiniMax-M3.TTS (
speech-2.*) configuration and the API base URL are left unchanged.Test plan
python3 -m unittest discover -s tests -p "test_minimax_provider.py"— all 16 tests passpython3 -m py_compile common/const.py channel/web/web_channel.py models/minimax/minimax_bot.py— clean compileimport constsmoke check:MINIMAX_M3 == "MiniMax-M3", removed constants no longer present,MODEL_LISTcontainsMiniMax-M3 / M2.7 / M2.7-highspeedand excludes the older M2.5 / M2.1 / M2 entries