updated subagent workflows

This commit is contained in:
Jonas H
2026-04-06 20:05:59 +02:00
parent 90e62b1a51
commit 0982a37e4d
16 changed files with 65 additions and 262 deletions

View File

@@ -1,35 +1,60 @@
{
"providers": {
"zai": {
"baseUrl": "https://api.z.ai/api/coding/paas/v4",
"opencode-go": {
"baseUrl": "https://opencode.ai/zen/go/v1",
"api": "openai-completions",
"apiKey": "ZAI_API_KEY",
"apiKey": "OPENCODE_API_KEY",
"models": [
{
"id": "glm-5.1",
"name": "GLM-5.1",
"id": "mimo-v2-pro",
"name": "MiMo-V2-Pro",
"reasoning": true,
"input": ["text"],
"contextWindow": 204800,
"contextWindow": 1048576,
"maxTokens": 131072,
"cost": { "input": 0.5, "output": 2.0, "cacheRead": 0.1, "cacheWrite": 0 }
},
{
"id": "glm-5",
"name": "GLM-5",
"reasoning": true,
"input": ["text"],
"contextWindow": 202752,
"maxTokens": 131072,
"cost": { "input": 1.0, "output": 3.2, "cacheRead": 0.2, "cacheWrite": 0 }
},
{
"id": "glm-4.7",
"name": "GLM-4.7",
"id": "kimi-k2.5",
"name": "Kimi K2.5",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 262144,
"maxTokens": 131072,
"cost": { "input": 0.6, "output": 3.0, "cacheRead": 0.1, "cacheWrite": 0 }
}
]
},
"opencode": {
"baseUrl": "https://opencode.ai/zen/v1",
"api": "openai-completions",
"apiKey": "OPENCODE_API_KEY",
"models": [
{
"id": "big-pickle",
"name": "Big Pickle",
"reasoning": true,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 65536,
"cost": { "input": 0.6, "output": 2.2, "cacheRead": 0.1, "cacheWrite": 0 }
"contextWindow": 200000,
"maxTokens": 128000,
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }
},
{
"id": "glm-4.7-flash",
"name": "GLM-4.7-Flash",
"reasoning": false,
"id": "qwen3.6-plus-free",
"name": "Qwen 3.6 Plus",
"reasoning": true,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 16384,
"contextWindow": 1048576,
"maxTokens": 131072,
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }
}
]