mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Rename `llm_model` → `model` and `llm_provider` → `provider` in stylesheet properties, accessor methods, and all DOT/doc references. Add ProviderInferenceTransform that automatically infers provider from the model catalog, eliminating redundant provider declarations in stylesheets. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
145 B
Text
6 lines
145 B
Text
digraph G {
|
|
start [shape=Mdiamond]
|
|
exit [shape=Msquare]
|
|
work [shape=box, model=gpt-5.2, prompt="Do the work."]
|
|
start -> work -> exit
|
|
}
|