mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
11 lines
298 B
Text
11 lines
298 B
Text
digraph AgentLinear {
|
|
graph [goal="Write hello to a file using an agent"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
work [label="Work", prompt="Write the word 'hello' to a file called scenario_test.txt"]
|
|
|
|
start -> work -> exit
|
|
}
|