Update OpenCode Go model catalog to match the official Go docs. Route Qwen 3.7 and MiniMax models through /v1/messages with Anthropic-compatible headers instead of OpenAI-compatible chat. Keep GLM, Kimi, DeepSeek, and MiMo on /chat/completions; use kimi-k2.7-code because the live Go API rejects kimi-k2.7 for chat while the docs config example uses the code model ID. PR #1931 by nguyenha935 Co-authored-by: Cursor <cursoragent@cursor.com>
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
export default {
|
|
id: "opencode-go",
|
|
priority: 210,
|
|
alias: "opencode-go",
|
|
aliases: [
|
|
"ocg",
|
|
],
|
|
uiAlias: "ocg",
|
|
display: {
|
|
name: "OpenCode Go",
|
|
icon: "terminal",
|
|
color: "#E87040",
|
|
textIcon: "OC",
|
|
website: "https://opencode.ai/auth",
|
|
notice: {
|
|
text: "OpenCode Go subscription: $5/mo (then 0/mo). Access to Kimi, GLM, Qwen, MiMo, MiniMax models.",
|
|
apiKeyUrl: "https://opencode.ai/auth",
|
|
},
|
|
},
|
|
category: "apikey",
|
|
transport: {
|
|
baseUrl: "https://opencode.ai/zen/go/v1/chat/completions",
|
|
headers: {},
|
|
},
|
|
models: [
|
|
{ id: "glm-5.2", name: "GLM 5.2" },
|
|
{ id: "glm-5.1", name: "GLM 5.1" },
|
|
{ id: "kimi-k2.7-code", name: "Kimi K2.7 Code" },
|
|
{ id: "kimi-k2.6", name: "Kimi K2.6" },
|
|
{ id: "deepseek-v4-pro", name: "DeepSeek V4 Pro" },
|
|
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash" },
|
|
{ id: "mimo-v2.5", name: "MiMo V2.5" },
|
|
{ id: "mimo-v2.5-pro", name: "MiMo V2.5 Pro" },
|
|
{ id: "minimax-m3", name: "MiniMax M3", targetFormat: "claude" },
|
|
{ id: "minimax-m2.7", name: "MiniMax M2.7", targetFormat: "claude" },
|
|
{ id: "minimax-m2.5", name: "MiniMax M2.5", targetFormat: "claude" },
|
|
{ id: "qwen3.7-max", name: "Qwen 3.7 Max", targetFormat: "claude" },
|
|
{ id: "qwen3.7-plus", name: "Qwen 3.7 Plus", targetFormat: "claude" },
|
|
{ id: "qwen3.6-plus", name: "Qwen 3.6 Plus", targetFormat: "claude" },
|
|
],
|
|
};
|