From f15954f4385f5469665d91b58217893ec66c5418 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Mon, 26 Jan 2026 10:29:05 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=A4=9A=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=88=86=E7=B1=BB=E9=85=8D=E7=BD=AE=E5=8F=8A=E5=AF=B9?= =?UTF-8?q?=E5=BA=94=E6=A8=A1=E5=9E=8B=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加新的任务分类配置并指定各自对应的模型,以支持前端设计、深度推理、艺术创作等多样化任务需求。 --- oh-my-opencode.jsonc | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/oh-my-opencode.jsonc b/oh-my-opencode.jsonc index a52386d..38806f5 100644 --- a/oh-my-opencode.jsonc +++ b/oh-my-opencode.jsonc @@ -3,12 +3,10 @@ "agents": { "sisyphus": { // Primary orchestrator - // "model": "anthropic-gateway/claude-opus-4-5-thinking" "model": "anthropic-gateway/claude-sonnet-4-5" }, "prometheus": { // Strategic planning - // "model": "anthropic-gateway/claude-opus-4-5-thinking" "model": "anthropic-gateway/claude-sonnet-4-5" }, "atlas": { @@ -31,5 +29,27 @@ // PDF/image analysis "model": "google-gateway/gemini-3-flash" } + }, + "categories": { + "visual-engineering": { + // 前端 UI/UX 设计任务 + "model": "google-gateway/gemini-3-pro-high" + }, + "ultrabrain": { + // 深度逻辑推理、复杂架构决策 + "model": "openai-gateway/gpt-5.2" + }, + "artistry": { + // 艺术创作任务 + "model": "google-gateway/gemini-3-pro-high" + }, + "quick": { + // 简单快速任务 + "model": "google-gateway/gemini-3-flash" + }, + "writing": { + // 文档写作任务 + "model": "google-gateway/gemini-3-flash" + } } }