update default model setup priorities

This commit is contained in:
YeonGyu-Kim
2026-05-08 12:18:38 +09:00
parent cd31d2a1a8
commit 12c4795e1b
14 changed files with 149 additions and 117 deletions
+4 -4
View File
@@ -52,19 +52,19 @@
"categories": {
// Trivial changes: fastest possible
"quick": { "model": "opencode/gpt-5-nano" },
"quick": { "model": "openai/gpt-5.4-mini-fast", "variant": "none" },
// Standard coding tasks: good quality, fast
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
"unspecified-low": { "model": "openai/gpt-5.5", "variant": "medium" },
// Complex refactors: best quality
"unspecified-high": { "model": "openai/gpt-5.3-codex" },
"unspecified-high": { "model": "openai/gpt-5.5", "variant": "high" },
// Visual work
"visual-engineering": { "model": "google/gemini-3.1-pro", "variant": "high" },
// Deep autonomous work
"deep": { "model": "openai/gpt-5.5" },
"deep": { "model": "openai/gpt-5.3-codex", "variant": "high" },
// Architecture decisions
"ultrabrain": { "model": "openai/gpt-5.5", "variant": "xhigh" },
+4 -4
View File
@@ -48,12 +48,12 @@
},
"categories": {
"quick": { "model": "opencode/gpt-5-nano" },
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
"unspecified-high": { "model": "anthropic/claude-opus-4-7", "variant": "max" },
"quick": { "model": "openai/gpt-5.4-mini-fast", "variant": "none" },
"unspecified-low": { "model": "openai/gpt-5.5", "variant": "medium" },
"unspecified-high": { "model": "openai/gpt-5.5", "variant": "high" },
"writing": { "model": "google/gemini-3-flash" },
"visual-engineering": { "model": "google/gemini-3.1-pro", "variant": "high" },
"deep": { "model": "openai/gpt-5.5" },
"deep": { "model": "openai/gpt-5.3-codex", "variant": "high" },
"ultrabrain": { "model": "openai/gpt-5.5", "variant": "xhigh" },
},
+4 -4
View File
@@ -63,14 +63,14 @@
},
"categories": {
"quick": { "model": "opencode/gpt-5-nano" },
"quick": { "model": "openai/gpt-5.4-mini-fast", "variant": "none" },
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
"unspecified-low": { "model": "openai/gpt-5.5", "variant": "medium" },
// High-effort planning tasks: maximum reasoning
"unspecified-high": {
"model": "openai/gpt-5.5",
"variant": "xhigh",
"variant": "high",
},
// Documentation from plans
@@ -80,7 +80,7 @@
"visual-engineering": { "model": "google/gemini-3.1-pro", "variant": "high" },
// Deep research and analysis
"deep": { "model": "openai/gpt-5.5" },
"deep": { "model": "openai/gpt-5.3-codex", "variant": "high" },
// Strategic reasoning
"ultrabrain": { "model": "openai/gpt-5.5", "variant": "xhigh" },