feat: 更新模型配置并添加 PackyCode 服务支持

- 将多个代理的模型配置从 claude-sonnet-4-5 更新为指定的最新版本模型。
- 添加 PackyCode 服务配置,支持 Claude Opus 4.5 和 Claude Sonnet 4.5 模型。
This commit is contained in:
2026-01-26 16:12:33 +08:00
parent 4f57e21c7e
commit b842500b40
2 changed files with 22 additions and 3 deletions

View File

@@ -3,15 +3,18 @@
"agents": { "agents": {
"sisyphus": { "sisyphus": {
// Primary orchestrator // Primary orchestrator
"model": "anthropic-gateway/claude-sonnet-4-5" // "model": "anthropic-gateway/claude-sonnet-4-5"
"model": "packycode/claude-opus-4-5-20251101"
}, },
"prometheus": { "prometheus": {
// Strategic planning // Strategic planning
"model": "anthropic-gateway/claude-sonnet-4-5" // "model": "anthropic-gateway/claude-sonnet-4-5"
"model": "packycode/claude-opus-4-5-20251101"
}, },
"atlas": { "atlas": {
// Master orchestrator // Master orchestrator
"model": "anthropic-gateway/claude-sonnet-4-5" // "model": "anthropic-gateway/claude-sonnet-4-5"
"model": "packycode/claude-sonnet-4-5-20250929"
}, },
"oracle": { "oracle": {
// Consultation, debugging // Consultation, debugging

View File

@@ -75,6 +75,22 @@
"name": "GLM-4.7" "name": "GLM-4.7"
} }
} }
},
"packycode": {
"name": "PackyCode",
"npm": "@ai-sdk/anthropic",
"options": {
"baseURL": "https://www.packyapi.com/v1",
"apiKey": "{env:PACKY_API_KEY}"
},
"models": {
"claude-opus-4-5": {
"name": "Claude Opus 4.5"
},
"claude-sonnet-4-5": {
"name": "Claude Sonnet 4.5"
}
}
} }
} }
} }