From 8703987b3c870ca40b61bfbfeadcf38af3a15d3e Mon Sep 17 00:00:00 2001 From: octo-patch <266937838+octo-patch@users.noreply.github.com> Date: Wed, 8 Jul 2026 10:39:35 +0000 Subject: [PATCH] Refresh MiniMax model registry params --- .../model-provider-registry-minimax.spec.ts | 1 + .../registries/model-provider-registry.generated.ts | 4 ++-- .../core/src/registries/model-provider-registry.ts | 4 ++-- .../registries/model-provider-types.generated.ts | 4 ++-- website/models-docs/providers/minimax-cn.md | 13 ++++++++++--- website/models-docs/providers/minimax.md | 13 ++++++++++--- 6 files changed, 27 insertions(+), 12 deletions(-) diff --git a/packages/core/src/registries/model-provider-registry-minimax.spec.ts b/packages/core/src/registries/model-provider-registry-minimax.spec.ts index 80c20e16d..d512d5a53 100644 --- a/packages/core/src/registries/model-provider-registry-minimax.spec.ts +++ b/packages/core/src/registries/model-provider-registry-minimax.spec.ts @@ -149,6 +149,7 @@ describe("MiniMax provider registry", () => { const registry = ModelProviderRegistry.getInstance(); const modelIds = [ + "MiniMax-M3", "MiniMax-M2.7", "MiniMax-M2.7-highspeed", "MiniMax-M2.5", diff --git a/packages/core/src/registries/model-provider-registry.generated.ts b/packages/core/src/registries/model-provider-registry.generated.ts index e24c73af0..c091070be 100644 --- a/packages/core/src/registries/model-provider-registry.generated.ts +++ b/packages/core/src/registries/model-provider-registry.generated.ts @@ -317,7 +317,7 @@ export const MODEL_PROVIDER_REGISTRY: Record npm: "@ai-sdk/anthropic", api: "https://api.minimax.io/anthropic/v1", env: ["MINIMAX_API_KEY"], - doc: "https://platform.minimax.io/docs/guides/quickstart", + doc: "https://platform.minimax.io/docs/api-reference/api-overview", }, "minimax-cn": { id: "minimax-cn", @@ -325,7 +325,7 @@ export const MODEL_PROVIDER_REGISTRY: Record npm: "@ai-sdk/anthropic", api: "https://api.minimaxi.com/anthropic/v1", env: ["MINIMAX_API_KEY"], - doc: "https://platform.minimaxi.com/docs/guides/quickstart", + doc: "https://platform.minimaxi.com/docs/api-reference/api-overview", }, mistral: { id: "mistral", diff --git a/packages/core/src/registries/model-provider-registry.ts b/packages/core/src/registries/model-provider-registry.ts index 0c1f5fd02..5de3c0614 100644 --- a/packages/core/src/registries/model-provider-registry.ts +++ b/packages/core/src/registries/model-provider-registry.ts @@ -150,7 +150,7 @@ const EXTRA_PROVIDER_REGISTRY: ModelProviderRegistryEntry[] = [ npm: "@ai-sdk/openai-compatible", api: "https://api.minimax.io/v1", env: ["MINIMAX_API_KEY"], - doc: "https://platform.minimax.io/docs/guides/quickstart", + doc: "https://platform.minimax.io/docs/api-reference/api-overview", }, { id: "minimax-cn", @@ -158,7 +158,7 @@ const EXTRA_PROVIDER_REGISTRY: ModelProviderRegistryEntry[] = [ npm: "@ai-sdk/openai-compatible", api: "https://api.minimaxi.com/v1", env: ["MINIMAX_API_KEY"], - doc: "https://platform.minimaxi.com/docs/guides/quickstart", + doc: "https://platform.minimaxi.com/docs/api-reference/api-overview", }, ]; diff --git a/packages/core/src/registries/model-provider-types.generated.ts b/packages/core/src/registries/model-provider-types.generated.ts index 87f4da8bd..8f2b8ce91 100644 --- a/packages/core/src/registries/model-provider-types.generated.ts +++ b/packages/core/src/registries/model-provider-types.generated.ts @@ -1103,8 +1103,8 @@ export type ProviderModelsMap = { "qwen/qwen3-coder-30b", ]; readonly lucidquery: readonly ["lucidnova-rf1-100b", "lucidquery-nexus-coder"]; - readonly minimax: readonly ["MiniMax-M2", "MiniMax-M2.1"]; - readonly "minimax-cn": readonly ["MiniMax-M2", "MiniMax-M2.1"]; + readonly minimax: readonly ["MiniMax-M2", "MiniMax-M2.1", "MiniMax-M3"]; + readonly "minimax-cn": readonly ["MiniMax-M2", "MiniMax-M2.1", "MiniMax-M3"]; readonly mistral: readonly [ "codestral-latest", "devstral-2512", diff --git a/website/models-docs/providers/minimax-cn.md b/website/models-docs/providers/minimax-cn.md index 3f47facd8..519b3cc9a 100644 --- a/website/models-docs/providers/minimax-cn.md +++ b/website/models-docs/providers/minimax-cn.md @@ -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 | ## 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 | diff --git a/website/models-docs/providers/minimax.md b/website/models-docs/providers/minimax.md index 3d269516b..e693cc9b8 100644 --- a/website/models-docs/providers/minimax.md +++ b/website/models-docs/providers/minimax.md @@ -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 | ## 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 |