-
Notifications
You must be signed in to change notification settings - Fork 4.2k
feat: add MiniMax as a new LLM provider #11367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
octo-patch
wants to merge
1
commit into
continuedev:main
Choose a base branch
from
octo-patch:add-minimax-provider
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+183
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| import { ChatMessage, CompletionOptions, LLMOptions } from "../../index.js"; | ||
|
|
||
| import OpenAI from "./OpenAI.js"; | ||
|
|
||
| class MiniMax extends OpenAI { | ||
| static providerName = "minimax"; | ||
| static defaultOptions: Partial<LLMOptions> = { | ||
| apiBase: "https://api.minimax.io/v1/", | ||
| model: "MiniMax-M2.5", | ||
| useLegacyCompletionsEndpoint: false, | ||
| }; | ||
|
|
||
| protected _convertArgs( | ||
| options: CompletionOptions, | ||
| messages: ChatMessage[], | ||
| ) { | ||
| const finalOptions = super._convertArgs(options, messages); | ||
|
|
||
| // MiniMax requires temperature in (0.0, 1.0] — zero is rejected | ||
| if ( | ||
| finalOptions.temperature !== undefined && | ||
| finalOptions.temperature !== null | ||
| ) { | ||
| if (finalOptions.temperature <= 0) { | ||
| finalOptions.temperature = 0.01; | ||
| } else if (finalOptions.temperature > 1) { | ||
| finalOptions.temperature = 1.0; | ||
| } | ||
| } | ||
|
|
||
| // MiniMax does not support response_format | ||
| if ((finalOptions as any).response_format) { | ||
| delete (finalOptions as any).response_format; | ||
| } | ||
|
|
||
| return finalOptions; | ||
| } | ||
| } | ||
|
|
||
| export default MiniMax; |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| --- | ||
| title: "How to Configure MiniMax with Continue" | ||
| sidebarTitle: "MiniMax" | ||
| --- | ||
|
|
||
| <Info> | ||
| Get your API key from the [MiniMax Platform](https://platform.minimax.io) | ||
| </Info> | ||
|
|
||
| ## Configuration | ||
|
|
||
| <Tabs> | ||
| <Tab title="YAML"> | ||
| ```yaml title="config.yaml" | ||
| name: My Config | ||
| version: 0.0.1 | ||
| schema: v1 | ||
|
|
||
| models: | ||
| - name: MiniMax M2.5 | ||
| provider: minimax | ||
| model: MiniMax-M2.5 | ||
| apiKey: <YOUR_MINIMAX_API_KEY> | ||
| ``` | ||
| </Tab> | ||
| <Tab title="JSON (Deprecated)"> | ||
| ```json title="config.json" | ||
| { | ||
| "models": [ | ||
| { | ||
| "title": "MiniMax M2.5", | ||
| "provider": "minimax", | ||
| "model": "MiniMax-M2.5", | ||
| "apiKey": "<YOUR_MINIMAX_API_KEY>" | ||
| } | ||
| ] | ||
| } | ||
| ``` | ||
| </Tab> | ||
| </Tabs> | ||
|
|
||
| ## Available Models | ||
|
|
||
| | Model | Description | | ||
| | :---- | :---------- | | ||
| | `MiniMax-M2.5` | Peak performance with ultimate value. 204K context window. | | ||
| | `MiniMax-M2.5-highspeed` | Same performance, faster and more agile. 204K context window. | | ||
|
|
||
| ## Notes | ||
|
|
||
| - MiniMax uses an OpenAI-compatible API at `https://api.minimax.io/v1` | ||
| - Set the `MINIMAX_API_KEY` environment variable or configure `apiKey` in your config | ||
| - For users in China, set `apiBase` to `https://api.minimaxi.com/v1/` |
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| import { ModelProvider } from "../types.js"; | ||
|
|
||
| export const MiniMax: ModelProvider = { | ||
| models: [ | ||
| { | ||
| model: "MiniMax-M2.5", | ||
| displayName: "MiniMax M2.5", | ||
| contextLength: 204800, | ||
| maxCompletionTokens: 192000, | ||
| description: | ||
| "Peak performance with ultimate value. Excels at complex reasoning, code generation, and multi-step tasks.", | ||
| regex: /MiniMax-M2\.5$/i, | ||
| recommendedFor: ["chat"], | ||
| }, | ||
| { | ||
| model: "MiniMax-M2.5-highspeed", | ||
| displayName: "MiniMax M2.5 Highspeed", | ||
| contextLength: 204800, | ||
| maxCompletionTokens: 192000, | ||
| description: | ||
| "Same performance as M2.5, faster and more agile for latency-sensitive tasks.", | ||
| regex: /MiniMax-M2\.5-highspeed/i, | ||
| recommendedFor: ["chat"], | ||
| }, | ||
| ], | ||
| id: "minimax", | ||
| displayName: "MiniMax", | ||
| }; |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1: MiniMax is wired to generic
OpenAIApi, which skips the repo’s MiniMax-specific request fixes (temperature clamping andresponse_formatremoval), creating a real incompatibility path in adapter-based runtime flows.Prompt for AI agents