wesichain-graph 0.3.0

Rust-native LLM agents & chains with resumable ReAct workflows
Documentation
1
2
3
4
5
6
7
use crate::{GraphState, StateSchema};

#[derive(Clone, Debug)]
pub struct GraphInterrupt<S: StateSchema> {
    pub node: String,
    pub state: GraphState<S>,
}