agent-graph
Graph-based agent orchestration for Rust -- a LangGraph-inspired execution engine with checkpointing, branching, and interrupt/resume.
Example
use ;
use ;
let graph = builder
.with_name
.add_node
.add_edge
.add_edge
.build?;
let result = graph.execute.await?;
Ecosystem
- stack-ids:
TraceCtx,AttemptId,TrialIdfor execution tracing - LLM-Pipeline: Provides
Payloadtrait implementations that run as graph nodes
stack-ids integration
Fully integrated. Graph executions carry TraceCtx for correlation, AttemptId per retry family, and TrialId per individual node trial.