feat: upgrade MiniMax default model to M3#1882
Open
octo-patch wants to merge 3 commits into
Open
Conversation
Add a new LLM extension for MiniMax (https://www.minimaxi.com/), providing support for MiniMax-M2.5 and MiniMax-M2.5-highspeed models with up to 204K context window via an OpenAI-compatible API. Changes: - Add extensions/llms/minimax/ with MiniMax LLM class extending BaseOpenAI - Add unit tests for MiniMax extension (15 tests) - Update LLM documentation with MiniMax setup instructions
Add MiniMax-M2.7 and MiniMax-M2.7-highspeed models as the new default, while retaining backward compatibility with M2.5 models.
- Add MiniMax-M3 to model list and set as default - Keep MiniMax-M2.7 and MiniMax-M2.7-highspeed - Remove older models (M2.5/M2.5-highspeed) - Update related tests
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 LLM extension to use MiniMax-M3 as the default model.
Changes
MiniMax-M2.7andMiniMax-M2.7-highspeedas alternativesMiniMax-M2.5andMiniMax-M2.5-highspeedREADME.mdanddocs/v3/large-language-models.mdxFiles Changed
extensions/llms/minimax/pandasai_minimax/minimax.pyextensions/llms/minimax/tests/test_minimax.pyextensions/llms/minimax/README.mddocs/v3/large-language-models.mdxWhy
MiniMax-M3 is the latest generation model, with a 512K context window, 128K max output, and image input support.
Test Plan