Expand description
Graph execution engine.
AgentGraph holds a set of GraphNodes connected by GraphEdges
and drives iterative execution from the entry node until either a node
returns NodeResult::Finished, an error occurs, or the graph has no
outgoing edge from the current node (natural termination).
Structsยง
- Agent
Graph - A directed graph of processing nodes that can be executed as a single unit.
- Agent
Graph Builder - Fluent builder for
AgentGraph.