Files
9router/open-sse/providers/registry/minimax.js
T
decoluaandCursor dd1e0f9bcc refactor(registry): B2 migrate to LiteLLM-style schema — unified models[] with kind field
- 71 registry files: flat `media.*Config.models` → `models[]` with `kind` field
- `media` wrapper removed → serviceKinds, *Config fields promoted top-level
- `type` field renamed to `kind` (llm/image/tts/stt/embedding/embedding/video/music)
- providers/index.js: PROVIDER_MEDIA now built from flat top-level media fields
- shared/constants/providers.js: buildProviderEntry reads flat top-level media fields
- route /v1/models: modelKind() uses kind||type; removed subConfig merge block
- models/info route: removed sub-config fallback lookup (all models in PROVIDER_MODELS)
- ttsProviders/index.js: synthesizeViaConfig reads tts models from PROVIDER_MODELS
- test-models route, helpers.js, validate route: kind||type compat
- Baselines: PROVIDERS 62/62 , Alias 90/90 

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-14 14:32:59 +07:00

71 lines
2.4 KiB
JavaScript

import { CLAUDE_API_HEADERS } from "../shared.js";
export default {
id: "minimax",
alias: "minimax",
display: {
name: "Minimax Coding",
icon: "memory",
color: "#7C3AED",
textIcon: "MM",
website: "https://www.minimaxi.com",
notice: {
apiKeyUrl: "https://platform.minimaxi.com/user-center/basic-information/interface-key",
},
},
category: "apikey",
transport: {
baseUrl: "https://api.minimax.io/anthropic/v1/messages",
format: "claude",
urlSuffix: "?beta=true",
headers: {
"Anthropic-Version": "2023-06-01",
"Anthropic-Beta": "claude-code-20250219,interleaved-thinking-2025-05-14",
},
quirks: {
dropOutputConfig: true,
},
reasoningInject: {
scope: "all",
},
auth: {
combined: true,
header: "x-api-key",
scheme: "raw",
},
usage: {
urls: [
"https://www.minimax.io/v1/token_plan/remains",
"https://api.minimax.io/v1/api/openplatform/coding_plan/remains",
],
},
},
models: [
{ id: "MiniMax-M3", name: "MiniMax M3", targetFormat: "claude" },
{ id: "MiniMax-M2.7", name: "MiniMax M2.7" },
{ id: "MiniMax-M2.5", name: "MiniMax M2.5" },
{ id: "MiniMax-M2.1", name: "MiniMax M2.1" },
{ id: "minimax-image-01", name: "MiniMax Image 01", params: ["n","size","response_format"], kind: "image" },
{ id: "speech-2.8-hd", name: "Speech 2.8 HD", kind: "tts" },
{ id: "speech-2.8-turbo", name: "Speech 2.8 Turbo", kind: "tts" },
{ id: "speech-2.6-hd", name: "Speech 2.6 HD", kind: "tts" },
{ id: "speech-2.6-turbo", name: "Speech 2.6 Turbo", kind: "tts" },
{ id: "speech-02-hd", name: "Speech 02 HD", kind: "tts" },
{ id: "speech-02-turbo", name: "Speech 02 Turbo", kind: "tts" },
{ id: "speech-01-hd", name: "Speech 01 HD", kind: "tts" },
{ id: "speech-01-turbo", name: "Speech 01 Turbo", kind: "tts" },
],
serviceKinds: ["llm","image","imageToText","webSearch","tts"],
ttsConfig: { baseUrl: "https://api.minimax.io/v1/t2a_v2", authType: "apikey", authHeader: "bearer", format: "minimax-tts" },
imageConfig: { baseUrl: "https://api.minimaxi.com/v1/images/generations" },
searchViaChat: {
defaultModel: "MiniMax-M2.7",
endpoint: "https://api.minimaxi.com/v1/text/chatcompletion_v2",
pricingUrl: "https://www.minimaxi.com/document/price",
},
features: {
usage: true,
usageApikey: true,
},
};