fabro/test/attractor/simple_example.dot
Bryan Helmkamp a535c6575f Rename kilroy → attractor in test directory and compat tests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 18:10:22 -05:00

17 lines
495 B
Text

digraph Simple {
graph [
goal="Run tests and report",
rankdir=LR,
model_stylesheet="
* { llm_model: gpt-5.2-codex; llm_provider: openai; }
"
]
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
run_tests [shape=box, label="Run Tests", prompt="Run the test suite and report results"]
report [shape=box, label="Report", prompt="Summarize the test results"]
start -> run_tests -> report -> exit
}