-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Refresh MiniMax M3 model params #1374
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ import { Agent } from "@voltagent/core"; | |
| const agent = new Agent({ | ||
| name: "minimax-cn-agent", | ||
| instructions: "You are a helpful assistant", | ||
| model: "minimax-cn/MiniMax-M2.7", | ||
| model: "minimax-cn/MiniMax-M3", | ||
| }); | ||
| ``` | ||
|
|
||
|
|
@@ -34,13 +34,20 @@ You can override the base URL by setting `MINIMAX_CN_BASE_URL`. | |
|
|
||
| ## Provider docs | ||
|
|
||
| - https://platform.minimaxi.com/docs/guides/quickstart | ||
| - https://platform.minimaxi.com/docs/api-reference/api-overview | ||
|
|
||
| ## Pricing | ||
|
|
||
| | Model | Input | Output | Cache read | Cache write | | ||
| |---|---:|---:|---:|---:| | ||
| | MiniMax-M3 | $0.60 / 1M tokens | $2.40 / 1M tokens | $0.12 / 1M tokens | Not listed | | ||
|
Comment on lines
+39
to
+43
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | ⚡ Quick win Document the full M3 pricing split. The current MiniMax pay-as-you-go page lists separate ≤512K and 512K~1M M3 pricing tiers, but this table only shows one rate set, so long-context usage will be underquoted. (platform.minimax.io) 🤖 Prompt for AI Agents |
||
|
|
||
| ## Models | ||
|
|
||
| | Model | Context | Description | | ||
| |---|---|---| | ||
| | MiniMax-M2.7 | 1M tokens | Latest flagship model | | ||
| | MiniMax-M3 | 1M tokens | Latest flagship model | | ||
| | MiniMax-M2.7 | 1M tokens | Previous generation | | ||
| | MiniMax-M2.7-highspeed | 1M tokens | Optimized for speed | | ||
| | MiniMax-M2.5 | 1M tokens | Previous generation | | ||
| | MiniMax-M2.5-highspeed | 204K tokens | Fast inference | | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ import { Agent } from "@voltagent/core"; | |
| const agent = new Agent({ | ||
| name: "minimax-agent", | ||
| instructions: "You are a helpful assistant", | ||
| model: "minimax/MiniMax-M2.7", | ||
| model: "minimax/MiniMax-M3", | ||
| }); | ||
| ``` | ||
|
|
||
|
|
@@ -36,13 +36,20 @@ You can override the base URL by setting `MINIMAX_BASE_URL`. | |
|
|
||
| ## Provider docs | ||
|
|
||
| - https://platform.minimax.io/docs/guides/quickstart | ||
| - https://platform.minimax.io/docs/api-reference/api-overview | ||
|
|
||
| ## Pricing | ||
|
|
||
| | Model | Input | Output | Cache read | Cache write | | ||
| |---|---:|---:|---:|---:| | ||
| | MiniMax-M3 | $0.60 / 1M tokens | $2.40 / 1M tokens | $0.12 / 1M tokens | Not listed | | ||
|
Comment on lines
+41
to
+45
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | ⚡ Quick win Document the full M3 pricing split. The current MiniMax pay-as-you-go page lists separate ≤512K and 512K~1M M3 pricing tiers, but this table only shows one rate set, so long-context usage will be underquoted. (platform.minimax.io) 🤖 Prompt for AI Agents |
||
|
|
||
| ## Models | ||
|
|
||
| | Model | Context | Description | | ||
| |---|---|---| | ||
| | MiniMax-M2.7 | 1M tokens | Latest flagship model | | ||
| | MiniMax-M3 | 1M tokens | Latest flagship model | | ||
| | MiniMax-M2.7 | 1M tokens | Previous generation | | ||
| | MiniMax-M2.7-highspeed | 1M tokens | Optimized for speed | | ||
| | MiniMax-M2.5 | 1M tokens | Previous generation | | ||
| | MiniMax-M2.5-highspeed | 204K tokens | Fast inference | | ||
|
|
||
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.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
Align the generated MiniMax China entry with the runtime registry.
model-provider-registry.generated.tsstill routesminimax-cnthrough@ai-sdk/anthropicand/anthropic/v1, butmodel-provider-registry.tsnow uses@ai-sdk/openai-compatibleand/v1. That leaves the generated metadata and runtime registry out of sync, so consumers can resolve the same provider through different transports. Please regenerate or update this entry so both files agree.Suggested alignment
📝 Committable suggestion
🤖 Prompt for AI Agents