|
|
|
|
|
by fractorial
25 days ago
|
|
I rolled my own simple execution DAG program. It’s shockingly effective due to rooting sub-DAGs into Planner nodes which are the only mutators of the DAG. The deepest topological leaf nodes become the blockers to the next Planner node. The only other special node is a Human node; structurally impossible for agents to close (I rolled my own harness) and block on my attention. |
|
I split my project into 3 layers - the engine/infra layer (handles task dispatch/queuing, spinning up node/agent containers, etc.), the 'brain' - basically a collection of different workflow models and related stuff (multiple different models for testing/exploration purposes), and the harness.