mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
12 lines
254 B
Text
12 lines
254 B
Text
digraph ModelStylesheetUnbound {
|
|
graph [
|
|
model_stylesheet="
|
|
* { reasoning_effort: {{ inputs.effort }}; }
|
|
"
|
|
]
|
|
|
|
start [shape=Mdiamond]
|
|
work [prompt="Do work"]
|
|
exit [shape=Msquare]
|
|
start -> work -> exit
|
|
}
|