@@ -28,21 +28,21 @@ for_object = "@default-general"
2828
2929[llm .aliases ]
3030best-gpt = " gpt-5.2"
31- best-claude = " claude-4.5 -opus"
31+ best-claude = " claude-4.7 -opus"
3232best-gemini = " gemini-3.0-pro"
3333best-mistral = " mistral-large"
3434
3535# Default aliases (first choice from waterfalls)
36- default-general = " claude-4.5 -sonnet"
36+ default-general = " claude-4.6 -sonnet"
3737default-premium = " claude-4.6-opus"
3838default-premium-vision = " claude-4.6-opus"
3939default-premium-structured = " claude-4.6-opus"
4040default-large-context-code = " gemini-3.0-pro"
4141default-large-context-text = " gemini-2.5-flash"
4242default-small = " gpt-4o-mini"
4343default-small-structured = " gpt-4o-mini"
44- default-small-vision = " gemini-2.5 -flash-lite "
45- default-small-creative = " gemini-2.5 -flash-lite "
44+ default-small-vision = " gemini-3.0 -flash-preview "
45+ default-small-creative = " gemini-3.0 -flash-preview "
4646
4747# ###################################################################################################
4848# LLM Presets
@@ -52,34 +52,36 @@ default-small-creative = "gemini-2.5-flash-lite"
5252
5353# Writing
5454writing-factual = { model = " @default-premium" , temperature = 0.1 , description = " Factual writing with high accuracy" }
55+ writing-factual-cheap = { model = " @default-small" , temperature = 0.1 , description = " Cheap factual writing with high accuracy" }
5556writing-creative = { model = " @default-premium" , temperature = 0.9 , description = " Creative writing with high variability" }
57+ writing-creative-cheap = { model = " @default-small-creative" , temperature = 0.9 , description = " Cheap creative writing with high variability" }
5658
5759# Retrieval
5860retrieval = { model = " @default-large-context-text" , temperature = 0.1 , description = " Data retrieval from large text corpora" }
61+ retrieval-cheap = { model = " gemini-2.5-flash-lite" , temperature = 0.1 , description = " Cheap data retrieval from large text corpora" }
62+ retrieval-premium = { model = " claude-4.7-opus" , temperature = 0.1 , description = " Premium data retrieval with highest accuracy" }
5963
6064# Engineering
6165engineering-structured = { model = " @default-premium-structured" , temperature = 0.2 , description = " Structured engineering output (JSON, schemas)" }
6266engineering-code = { model = " @default-premium" , temperature = 0.1 , description = " Code generation and analysis" }
67+ engineering-code-cheap = { model = " claude-4.6-sonnet" , temperature = 0.1 , description = " Cheap code generation and analysis" }
68+ engineering-code-cheaper = { model = " claude-4.5-haiku" , temperature = 0.1 , description = " Cheapest code generation and analysis" }
6369engineering-codebase-analysis = { model = " @best-gemini" , temperature = 0.1 , description = " Large codebase analysis" }
6470
6571# Vision
66- vision = { model = " @default-premium-vision" , temperature = 0.5 , description = " Vision language model for understanding images" }
67- vision-cheap = { model = " @default-small-vision" , temperature = 0.5 , description = " Budget vision model for simple image tasks" }
72+ vision = { model = " @default-premium-vision" , temperature = 0.5 , description = " Understanding and interpreting images" }
73+ vision-cheap = { model = " @default-small-vision" , temperature = 0.5 , description = " Cheap image understanding for simple tasks" }
6874vision-diagram = { model = " @default-premium-vision" , temperature = 0.3 , description = " Diagram and chart interpretation" }
6975vision-table = { model = " @default-premium-vision" , temperature = 0.3 , description = " Table extraction from images" }
7076
7177# Image generation prompting
7278img-gen-prompting = { model = " @default-premium" , temperature = 0.5 , description = " Crafting image generation prompts" }
73- img-gen-prompting-cheap = { model = " @default-small" , temperature = 0.5 , description = " Budget image prompt generation" }
79+ img-gen-prompting-cheap = { model = " @default-small-creative " , temperature = 0.5 , description = " Cheap image prompt generation" }
7480
7581# Reasoning
7682deep-analysis = { model = " @default-premium" , temperature = 0.1 , reasoning_effort = " high" , description = " Deep reasoning and analysis" }
7783quick-reasoning = { model = " @default-premium" , temperature = 0.3 , reasoning_effort = " low" , description = " Quick reasoning for simple tasks" }
7884
79- # Builder (isolated presets for the pipeline builder)
80- pipe-builder-engineering = { model = " claude-4.6-opus" , temperature = 0.2 , description = " Builder: structured engineering output" }
81- pipe-builder-img-gen-prompting = { model = " claude-4.5-sonnet" , temperature = 0.7 , description = " Builder: crafting image generation prompts" }
82-
8385# Testing
8486testing-text = { model = " @default-small" , temperature = 0.5 , description = " Testing preset for text generation" }
8587testing-structured = { model = " @default-small-structured" , temperature = 0.1 , description = " Testing preset for structured output" }
0 commit comments