feat: upgrade MiniMax default model to M3#38
Open
octo-patch wants to merge 1 commit into
Open
Conversation
- Add MiniMax-M3 preset and set it as the default MiniMax quick-fill option - Keep MiniMax-M2.7 as a separate legacy preset (new "MiniMax M2.7" button) - Retain MiniMax-M2.7-highspeed (Highspeed) preset unchanged - Update OpenAiRuntimeProviderTest to use MiniMax-M3 in driver-resolution test
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
Upgrade the MiniMax quick-fill preset on the AI Models admin page to use the latest MiniMax-M3 model as the default, while preserving M2.7 and the Highspeed variant as alternatives.
Changes
resources/views/admin/ai-models/index.blade.phpminimaxpreset (the "MiniMax" quick button) now points toMiniMax-M3(api.minimax.io, chat model)minimax_m27preset and "MiniMax M2.7" button added so existing users can still pick the previous default in one clickminimax_highspeedpreset (MiniMax-M2.7-highspeed) retained unchangedtests/Unit/OpenAiRuntimeProviderTest.phptest_it_resolves_chat_driver_for_minimaxupdated to assert driver resolution againstMiniMax-M3; the URL-based driver decision (https://api.minimaxi.com/v1->deepseekdriver) is unchangedWhy
MiniMax-M3 is the new flagship model with a 512K context window, 128K max output, and image input support across both OpenAI-compatible and Anthropic-compatible interfaces. Setting it as the default makes new GEOFlow installations pick the newer model out-of-the-box, while keeping M2.7 / Highspeed available for users who prefer the older generation.
Testing
php -lpasses for both modified files