fabro/docs/internal/demo/14-search-imagegen.fabro
Bryan Helmkamp 54c5f30586
docs: move published docs under docs/public
Relocate the Mintlify tree to docs/public and consolidate internal docs under docs/internal. Update build scripts, tests, CI filters, README references, and local docs skills to follow the new layout.
2026-04-26 21:19:46 -04:00

13 lines
701 B
Text

digraph SearchImageGen {
graph [goal="Search the web for a famous landmark, then generate an image of it"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
research [label="Research", prompt="Use web_search to find a brief description of the Sagrada Familia in Barcelona. Save a 2-3 sentence description to landmark.txt."]
imagine [label="Generate Image", prompt="Read landmark.txt. Using its description, craft a vivid, detailed image generation prompt.\nThen run: mkdir -p output && imagegen '<your prompt>' output/landmark.png\nThe imagegen command takes a text prompt and an output path."]
start -> research -> imagine -> exit
}