fabro/test/docs/core-concepts/models/example.dot
Bryan Helmkamp 97e4c41f4e Re-sync test/docs DOT fixtures with current documentation
Re-extracted all DOT examples from docs, added test fixtures for new
pages (preview, brave-search, daytona, sub-workflow), recreated
assembled snippet files, and excluded not-yet-working vnc-access and
vpn-connections pages. 40 files now validate and dry-run clean.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 18:06:57 -05:00

17 lines
485 B
Text

digraph Example {
graph [
model_stylesheet="
* { llm_model: claude-haiku-4-5; }
.coding { llm_model: claude-sonnet-4-5; reasoning_effort: high; }
#review { llm_model: gemini-3.1-pro-preview; }
"
]
start [shape=Mdiamond]
spec [label="Write Spec"]
implement [label="Implement", class="coding"]
review [label="Review"]
exit [shape=Msquare]
start -> spec -> implement -> review -> exit
}