-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathopencode.json
More file actions
87 lines (87 loc) · 2.13 KB
/
opencode.json
File metadata and controls
87 lines (87 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://opencode.ai/config.json",
"autoupdate": true,
"mcp": {
"MiniMax": {
"type": "local",
"command": ["uvx", "minimax-coding-plan-mcp", "-y"],
"environment": {
"MINIMAX_API_KEY": "YOUR_MINIMAX_API_KEY",
"MINIMAX_API_HOST": "https://api.minimax.io"
},
"enabled": true
}
},
"provider": {
"minimax": {
"npm": "@ai-sdk/anthropic",
"name": "MiniMax",
"options": {
"baseURL": "https://api.minimax.io/anthropic/v1",
"apiKey": "YOUR_MINIMAX_API_KEY"
},
"models": {
"MiniMax-M2.7-highspeed": {
"name": "MiniMax-M2.7-highspeed"
}
}
},
"bailian-coding-plan": {
"npm": "@ai-sdk/anthropic",
"name": "Model Studio Coding Plan",
"options": {
"baseURL": "https://coding-intl.dashscope.aliyuncs.com/apps/anthropic/v1",
"apiKey": "YOUR_ALIYUN_API_KEY"
},
"models": {
"qwen3.6-plus": {
"name": "Qwen3.6 Plus",
"modalities": {
"input": ["text", "image"],
"output": ["text"]
},
"options": {
"thinking": {
"type": "enabled",
"budgetTokens": 8192
}
},
"limit": {
"context": 1000000,
"output": 65536
}
},
"qwen3-coder-plus": {
"name": "Qwen3 Coder Plus",
"modalities": {
"input": ["text"],
"output": ["text"]
},
"limit": {
"context": 1000000,
"output": 65536
}
},
"kimi-k2.5": {
"name": "Kimi K2.5",
"modalities": {
"input": ["text", "image"],
"output": ["text"]
},
"options": {
"thinking": {
"type": "enabled",
"budgetTokens": 8192
}
},
"limit": {
"context": 262144,
"output": 32768
}
}
}
}
},
"model": "bailian-coding-plan/qwen3.6-plus",
"small_model": "minimax/MiniMax-M2.7-highspeed"
}