From 2ebaf172e693a61f4962b863ca9a5c6444f91508 Mon Sep 17 00:00:00 2001 From: octo-patch <266937838+octo-patch@users.noreply.github.com> Date: Thu, 9 Jul 2026 08:20:11 +0000 Subject: [PATCH] Add MiniMax M3 to global provider preset Expose MiniMax-M3 in the existing MiniMax Global catalog and route the preset through the documented Anthropic-compatible v1 endpoint. Co-Authored-By: Claude Opus 4.7 --- src/lib/provider-catalog.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/provider-catalog.ts b/src/lib/provider-catalog.ts index 2a9e3300..0bd9df54 100644 --- a/src/lib/provider-catalog.ts +++ b/src/lib/provider-catalog.ts @@ -700,13 +700,14 @@ export const VENDOR_PRESETS: VendorPreset[] = [ descriptionZh: 'MiniMax 编程套餐 — 国际区', protocol: 'anthropic', authStyle: 'auth_token', - baseUrl: 'https://api.minimax.io/anthropic', + baseUrl: 'https://api.minimax.io/anthropic/v1', defaultEnvOverrides: { API_TIMEOUT_MS: '3000000', CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: '1', }, defaultModels: [ { modelId: 'sonnet', upstreamModelId: 'MiniMax-M2.7', displayName: 'MiniMax-M2.7', role: 'default' }, + { modelId: 'MiniMax-M3', upstreamModelId: 'MiniMax-M3', displayName: 'MiniMax-M3', capabilities: { contextWindow: 1000000, reasoning: true, toolUse: true, supportsAdaptiveThinking: true } }, ], defaultRoleModels: { default: 'MiniMax-M2.7',