Skip to content
Open
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
2 changes: 1 addition & 1 deletion apps/site/content/docs/en/providers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ CodePilot includes built-in configuration presets for major Chinese providers. A
| **智谱 GLM (Domestic/International)** | Zhipu AI GLM series | Coding Plan (credit-based) |
| **Kimi Coding Plan** | Moonshot Kimi coding edition | Pay-as-you-go |
| **Moonshot** | Moonshot API | Pay-as-you-go |
| **MiniMax (Domestic/International)** | MiniMax M2.7 | Token Plan |
| **MiniMax (Domestic/International)** | MiniMax M3 (default) / M2.7 | Token Plan |
| **DeepSeek** | DeepSeek V4 Pro / V4 Flash (Anthropic-compatible endpoint) | Pay-as-you-go |
| **火山引擎 Ark** | ByteDance Volcengine (Doubao, GLM, DeepSeek, Kimi) | Coding Plan |
| **小米 MiMo** | Xiaomi MiMo-V2.5-Pro (pay-as-you-go or Token Plan) | Pay-as-you-go / Token Plan |
Expand Down
2 changes: 1 addition & 1 deletion apps/site/content/docs/zh/providers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ CodePilot 内置了国内主流服务商的配置预设,选择后自动填充
| **智谱 GLM(国内/国际)** | 智谱 AI GLM 系列 | Coding Plan(积分制) |
| **Kimi Coding Plan** | 月之暗面 Kimi 编程版 | 按量付费 |
| **Moonshot** | 月之暗面 Moonshot API | 按量付费 |
| **MiniMax(国内/国际)** | MiniMax M2.7 | Token Plan |
| **MiniMax(国内/国际)** | MiniMax M3(默认)/ M2.7 | Token Plan |
| **DeepSeek** | DeepSeek V4 Pro / V4 Flash(Anthropic 兼容端点) | 按量付费 |
| **火山引擎 Ark** | 字节跳动火山引擎(豆包、GLM、DeepSeek、Kimi) | Coding Plan |
| **小米 MiMo** | 小米 MiMo-V2.5-Pro(按量付费或 Token Plan) | 按量 / Token Plan |
Expand Down
19 changes: 10 additions & 9 deletions src/lib/provider-catalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -480,12 +480,13 @@ export const VENDOR_PRESETS: VendorPreset[] = [
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', role: 'default' },
{ modelId: 'MiniMax-M2.7', upstreamModelId: 'MiniMax-M2.7', displayName: 'MiniMax-M2.7' },
],
defaultRoleModels: {
default: 'MiniMax-M2.7',
sonnet: 'MiniMax-M2.7',
opus: 'MiniMax-M2.7',
default: 'MiniMax-M3',
sonnet: 'MiniMax-M3',
opus: 'MiniMax-M3',
haiku: 'MiniMax-M2.7',
},
fields: ['api_key'],
Expand All @@ -512,12 +513,13 @@ export const VENDOR_PRESETS: VendorPreset[] = [
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', role: 'default' },
{ modelId: 'MiniMax-M2.7', upstreamModelId: 'MiniMax-M2.7', displayName: 'MiniMax-M2.7' },
],
defaultRoleModels: {
default: 'MiniMax-M2.7',
sonnet: 'MiniMax-M2.7',
opus: 'MiniMax-M2.7',
default: 'MiniMax-M3',
sonnet: 'MiniMax-M3',
opus: 'MiniMax-M3',
haiku: 'MiniMax-M2.7',
},
fields: ['api_key'],
Expand Down Expand Up @@ -664,7 +666,6 @@ export const VENDOR_PRESETS: VendorPreset[] = [
{ modelId: 'kimi-k2.5', displayName: 'Kimi K2.5' },
{ modelId: 'glm-5', displayName: 'GLM-5' },
{ modelId: 'glm-4.7', displayName: 'GLM-4.7' },
{ modelId: 'MiniMax-M2.5', displayName: 'MiniMax-M2.5' },
],
fields: ['api_key'],
iconKey: 'bailian',
Expand Down