feat: upgrade MiniMax default model to M3#8251
Conversation
- Add MiniMax-M3 to the model selection list and set it as the new default - Retain MiniMax-M2.7 and MiniMax-M2.7-highspeed as available alternatives - Remove deprecated MiniMax-M2.5 / MiniMax-M2.5-highspeed from the list - Update unit test to reference the new default model
ae9f700 to
f97ec93
Compare
Review: PR #8251 - feat: upgrade MiniMax default model to M3SummaryThis PR updates the MiniMax provider configuration to add MiniMax-M3 as the new default model, retain M2.7 variants, and remove deprecated M2.5 variants. The corresponding unit test is updated. Changes Analyzed
Observations
VerdictStraightforward configuration update. The only concern is the impact on users with M2.5 models configured, but that is a product decision (deprecation is intentional per the PR description). Recommendation: can merge |
Summary
Upgrade MiniMax model configuration in the minimax provider to include the latest M3 model as the new default.
Changes
MiniMax-M3to the model selection list and set it as the default (listed first)MiniMax-M2.7andMiniMax-M2.7-highspeedas available alternativesMiniMax-M2.5/MiniMax-M2.5-highspeedfrom the listweb-app/src/constants/models.ts(streaming / tool-calls)Why
MiniMax-M3is the new flagship model from MiniMax with enhanced reasoning and coding capabilities. Setting it as the default and removing the older M2.5 line keeps the provider aligned with MiniMax's current offering, while M2.7 stays around for users who still want it.API Reference
Testing
web-app/src/lib/__tests__/model-factory.test.tsupdated to verify the OpenAI-compatible model factory works with the newMiniMax-M3model id.model-factory.tsis unchanged, so all other minimax provider behavior continues to work.