Compare commits
2 Commits
6f832d3d8c
...
6d8635c1ac
| Author | SHA1 | Date | |
|---|---|---|---|
| 6d8635c1ac | |||
| abea1e52c0 |
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"$schema": "https://opencode.ai/config.json",
|
||||
"provider": {
|
||||
"bailian-coding-plan": {
|
||||
"npm": "@ai-sdk/anthropic",
|
||||
"name": "Model Studio Coding Plan",
|
||||
"options": {
|
||||
"baseURL": "https://coding.dashscope.aliyuncs.com/apps/anthropic/v1",
|
||||
"apiKey": "{env:BAILIAN_CODING_API_KEY}"
|
||||
},
|
||||
"models": {
|
||||
"qwen3.5-plus": {
|
||||
"name": "Qwen3.5 Plus",
|
||||
"modalities": {
|
||||
"input": ["text", "image"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"options": {
|
||||
"thinking": {
|
||||
"type": "enabled",
|
||||
"budgetTokens": 1024
|
||||
}
|
||||
}
|
||||
},
|
||||
"qwen3-max-2026-01-23": {
|
||||
"name": "Qwen3 Max 2026-01-23"
|
||||
},
|
||||
"qwen3-coder-next": {
|
||||
"name": "Qwen3 Coder Next"
|
||||
},
|
||||
"qwen3-coder-plus": {
|
||||
"name": "Qwen3 Coder Plus"
|
||||
},
|
||||
"MiniMax-M2.5": {
|
||||
"name": "MiniMax M2.5",
|
||||
"options": {
|
||||
"thinking": {
|
||||
"type": "enabled",
|
||||
"budgetTokens": 1024
|
||||
}
|
||||
}
|
||||
},
|
||||
"glm-5": {
|
||||
"name": "GLM-5",
|
||||
"options": {
|
||||
"thinking": {
|
||||
"type": "enabled",
|
||||
"budgetTokens": 1024
|
||||
}
|
||||
}
|
||||
},
|
||||
"glm-4.7": {
|
||||
"name": "GLM-4.7",
|
||||
"options": {
|
||||
"thinking": {
|
||||
"type": "enabled",
|
||||
"budgetTokens": 1024
|
||||
}
|
||||
}
|
||||
},
|
||||
"kimi-k2.5": {
|
||||
"name": "Kimi K2.5",
|
||||
"modalities": {
|
||||
"input": ["text", "image"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"options": {
|
||||
"thinking": {
|
||||
"type": "enabled",
|
||||
"budgetTokens": 1024
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
{
|
||||
// "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
|
||||
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/dev/assets/oh-my-opencode.schema.json",
|
||||
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
|
||||
// ref: https://github.com/code-yeongyu/oh-my-opencode/blob/dev/src/agents/AGENTS.md#agent-inventory
|
||||
"agents": {
|
||||
"sisyphus": {
|
||||
@@ -16,10 +15,10 @@
|
||||
"variant": "high"
|
||||
},
|
||||
"librarian": {
|
||||
"model": "litellm/gemini-3-flash-preview"
|
||||
"model": "bailian-coding-plan/glm-4.7"
|
||||
},
|
||||
"explore": {
|
||||
"model": "litellm/gemini-3-flash-preview"
|
||||
"model": "bailian-coding-plan/qwen3-coder-next"
|
||||
},
|
||||
"multimodal-looker": {
|
||||
"model": "litellm/gemini-3-flash-preview"
|
||||
@@ -37,11 +36,8 @@
|
||||
"variant": "medium"
|
||||
},
|
||||
"atlas": {
|
||||
"model": "litellm/claude-sonnet-4-5"
|
||||
"model": "litellm/claude-sonnet-4-6"
|
||||
}
|
||||
// "sisyphus-junior": {
|
||||
// "model": "litellm/claude-sonnet-4-5"
|
||||
// }
|
||||
},
|
||||
// ref: https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/reference/configuration.md#built-in-categories
|
||||
"categories": {
|
||||
@@ -72,7 +68,7 @@
|
||||
"variant": "max"
|
||||
},
|
||||
"writing": {
|
||||
"model": "litellm/gemini-3-flash-preview" // FIXME
|
||||
"model": "bailian-coding-plan/kimi-k2.5"
|
||||
}
|
||||
},
|
||||
"git_master": {
|
||||
|
||||
@@ -100,6 +100,42 @@
|
||||
"apiKey": "{env:BAILIAN_API_KEY}"
|
||||
},
|
||||
"models": {
|
||||
"qwen3.5-plus": {
|
||||
"name": "Qwen3.5 Plus",
|
||||
"reasoning": true,
|
||||
"modalities": {
|
||||
"input": ["text", "image", "video"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"limit": { "context": 1000000, "output": 65536 }
|
||||
},
|
||||
"qwen3-max-2026-01-23": {
|
||||
"name": "Qwen3 Max 2026-01-23",
|
||||
"reasoning": false,
|
||||
"modalities": {
|
||||
"input": ["text"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"limit": { "context": 262144, "output": 65536 }
|
||||
},
|
||||
"qwen3-coder-next": {
|
||||
"name": "Qwen3 Coder Next",
|
||||
"reasoning": false,
|
||||
"modalities": {
|
||||
"input": ["text"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"limit": { "context": 262144, "output": 65536 }
|
||||
},
|
||||
"qwen3-coder-plus": {
|
||||
"name": "Qwen3 Coder Plus",
|
||||
"reasoning": false,
|
||||
"modalities": {
|
||||
"input": ["text"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"limit": { "context": 1000000, "output": 65536 }
|
||||
},
|
||||
"glm-5": {
|
||||
"name": "GLM-5",
|
||||
"reasoning": true,
|
||||
|
||||
Reference in New Issue
Block a user