feat(delegate-task): add category model catalog with default models

- Add CATEGORY_MODEL_CATALOG for category-specific default models
- ultrabrain: openai/gpt-5.2-codex + xhigh
- artistry: google/gemini-3-pro-preview + max
- most-capable: anthropic/claude-opus-4-5 + max
- writing: google/gemini-3-flash-preview
- general: anthropic/claude-sonnet-4-5
This commit is contained in:
justsisyphus 2026-01-20 16:04:42 +09:00
parent 59d663dce7
commit 3be387d9e3

View File

@ -209,6 +209,10 @@ export const DEFAULT_CATEGORIES: Record<string, CategoryConfig> = {
export const CATEGORY_MODEL_CATALOG: Record<string, { model: string; variant?: string }> = {
ultrabrain: { model: "openai/gpt-5.2-codex", variant: "xhigh" },
artistry: { model: "google/gemini-3-pro-preview", variant: "max" },
"most-capable": { model: "anthropic/claude-opus-4-5", variant: "max" },
writing: { model: "google/gemini-3-flash-preview" },
general: { model: "anthropic/claude-sonnet-4-5" },
}
export const CATEGORY_PROMPT_APPENDS: Record<string, string> = {