fabro/tmp/imagegen-api.dot
Bryan Helmkamp f4c2014026 Add custom Dockerfile and simplify imagegen workflow
Bake the imagegen script into a Daytona snapshot so the agent
can just run `imagegen <prompt> <output>` instead of manually
calling the Gemini API with curl/jq.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 11:20:07 -04:00

11 lines
379 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: imagegen \"$goal\" generated.png\n\nThen verify the file exists with: ls -la generated.png"]
start -> generate -> exit
}