fabro/docs/internal/demo/13-web-search.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

11 lines
430 B
Text

digraph WebSearch {
graph [goal="Search the web for a topic and summarize the findings"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
search [label="Search & Summarize", prompt="Use the web_search tool to search for 'what is DOT graph language' and summarize the top results in 2-3 sentences. Write your summary to search-results.txt."]
start -> search -> exit
}