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:
parent
59d663dce7
commit
3be387d9e3
@ -209,6 +209,10 @@ export const DEFAULT_CATEGORIES: Record<string, CategoryConfig> = {
|
|||||||
|
|
||||||
export const CATEGORY_MODEL_CATALOG: Record<string, { model: string; variant?: string }> = {
|
export const CATEGORY_MODEL_CATALOG: Record<string, { model: string; variant?: string }> = {
|
||||||
ultrabrain: { model: "openai/gpt-5.2-codex", variant: "xhigh" },
|
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> = {
|
export const CATEGORY_PROMPT_APPENDS: Record<string, string> = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user