Wesichain Graph
Stateful graph execution engine for building complex agents and workflows.
Features
State Management
Inspect and modify the graph state at runtime using thread IDs.
Get State
Retrieve the current state snapshot for a given thread.
let state = graph.get_state.await?;
if let Some = state
Update State
Update the state of a thread, effectively "time traveling" or correcting the workflow.
graph.update_state.await?;