Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions internal-packages/llm-model-catalog/src/default-model-prices.json
Original file line number Diff line number Diff line change
Expand Up @@ -3987,5 +3987,48 @@
}
}
]
},
{
"id": "minimax-m3",
"modelName": "MiniMax-M3",
"matchPattern": "(?i)^(minimax/)?(MiniMax-M3)$",
"createdAt": "2026-07-29T00:00:00.000Z",
"updatedAt": "2026-07-29T00:00:00.000Z",
"pricingTiers": [
{
"id": "minimax-m3_tier_default",
"name": "Standard",
"isDefault": true,
"priority": 0,
"conditions": [],
"prices": {
"input": 0.0000006,
"output": 0.0000024,
"input_cache_read": 0.00000012
}
}
]
},
{
"id": "minimax-m2-7",
"modelName": "MiniMax-M2.7",
"matchPattern": "(?i)^(minimax/)?(MiniMax-M2.7)$",
"createdAt": "2026-07-29T00:00:00.000Z",
"updatedAt": "2026-07-29T00:00:00.000Z",
"pricingTiers": [
{
"id": "minimax-m2-7_tier_default",
"name": "Standard",
"isDefault": true,
"priority": 0,
"conditions": [],
"prices": {
"input": 0.0000003,
"output": 0.0000012,
"input_cache_read": 0.00000006,
"input_cache_creation": 0.000000375
}
}
]
}
]
37 changes: 37 additions & 0 deletions internal-packages/llm-model-catalog/src/defaultPrices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3108,4 +3108,41 @@ export const defaultModelPrices: DefaultModelDefinition[] = [
},
],
},
{
modelName: "MiniMax-M3",
matchPattern: "(?i)^(minimax/)?(MiniMax-M3)$",
startDate: "2026-07-29T00:00:00.000Z",
pricingTiers: [
{
name: "Standard",
isDefault: true,
priority: 0,
conditions: [],
prices: {
input: 6e-7,
output: 0.0000024,
input_cache_read: 1.2e-7,
},
},
],
},
{
modelName: "MiniMax-M2.7",
matchPattern: "(?i)^(minimax/)?(MiniMax-M2.7)$",
startDate: "2026-07-29T00:00:00.000Z",
pricingTiers: [
{
name: "Standard",
isDefault: true,
priority: 0,
conditions: [],
prices: {
input: 3e-7,
output: 0.0000012,
input_cache_read: 6e-8,
input_cache_creation: 3.75e-7,
},
},
],
},
];
30 changes: 30 additions & 0 deletions internal-packages/llm-model-catalog/src/model-catalog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
{
"MiniMax-M2.7": {
"provider": "minimax",
"description": "MiniMax's text-only large language model with a 204,800-token context window and always-on thinking for step-by-step reasoning.",
"contextWindow": 204800,
"maxOutputTokens": null,
"capabilities": ["extended_thinking"],
"releaseDate": null,
"isHidden": false,
"supportsStructuredOutput": false,
"supportsParallelToolCalls": false,
"supportsStreamingToolCalls": false,
"deprecationDate": null,
"knowledgeCutoff": null,
"resolvedAt": "2026-07-29T00:00:00.000Z"
},
"MiniMax-M3": {
"provider": "minimax",
"description": "MiniMax's large language model with a 1,000,000-token context window that accepts text, image, and video input and supports adaptive thinking that can be switched on or off.",
"contextWindow": 1000000,
"maxOutputTokens": null,
"capabilities": ["vision", "extended_thinking"],
"releaseDate": null,
"isHidden": false,
"supportsStructuredOutput": false,
"supportsParallelToolCalls": false,
"supportsStreamingToolCalls": false,
"deprecationDate": null,
"knowledgeCutoff": null,
"resolvedAt": "2026-07-29T00:00:00.000Z"
},
"chatgpt-4o-latest": {
"provider": "openai",
"description": "OpenAI's flagship multimodal model optimized for speed and cost, capable of processing text, images, and audio with strong performance across reasoning, coding, and creative tasks.",
Expand Down
34 changes: 34 additions & 0 deletions internal-packages/llm-model-catalog/src/modelCatalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,40 @@ import type { ModelCatalogEntry } from "./types.js";
// Run `pnpm run generate-catalog` to update the JSON, then `pnpm run generate` to regenerate.

export const modelCatalog: Record<string, ModelCatalogEntry> = {
"MiniMax-M2.7": {
provider: "minimax",
description:
"MiniMax's text-only large language model with a 204,800-token context window and always-on thinking for step-by-step reasoning.",
contextWindow: 204800,
maxOutputTokens: null,
capabilities: ["extended_thinking"],
releaseDate: null,
isHidden: false,
supportsStructuredOutput: false,
supportsParallelToolCalls: false,
supportsStreamingToolCalls: false,
deprecationDate: null,
knowledgeCutoff: null,
resolvedAt: "2026-07-29T00:00:00.000Z",
baseModelName: null,
},
"MiniMax-M3": {
provider: "minimax",
description:
"MiniMax's large language model with a 1,000,000-token context window that accepts text, image, and video input and supports adaptive thinking that can be switched on or off.",
contextWindow: 1000000,
maxOutputTokens: null,
capabilities: ["vision", "extended_thinking"],
releaseDate: null,
isHidden: false,
supportsStructuredOutput: false,
supportsParallelToolCalls: false,
supportsStreamingToolCalls: false,
deprecationDate: null,
knowledgeCutoff: null,
resolvedAt: "2026-07-29T00:00:00.000Z",
baseModelName: null,
},
"chatgpt-4o-latest": {
provider: "openai",
description:
Expand Down