fabro/arc/workflows/imagegen/workflow.dot
2026-03-10 09:18:01 -04:00

11 lines
412 B
Text

digraph ImageGen {
graph [goal="A cute robot painting a landscape"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
generate [label="Generate Image", prompt="Generate an image of: $goal\n\nRun: mkdir -p output && imagegen \"$goal\" output/generated.png\n\nThen verify the file exists with: ls -la output/generated.png"]
start -> generate -> exit
}