feat: Implemented state management for agent graphs

This commit is contained in:
2026-05-13 09:18:38 -06:00
parent beebb39050
commit 76861508c9
3 changed files with 445 additions and 1 deletions
+2
View File
@@ -2,9 +2,11 @@
//! JSON state, composed of agent/script/approval/input/end nodes.
pub mod parser;
pub mod state;
pub mod types;
pub use parser::{GraphParser, agent_has_graph, load_agent_graph};
pub use state::{StateManager, StateRepresentation};
pub use types::{
AgentNode, ApprovalNode, EndNode, Graph, GraphSettings, GraphState, InputNode, Node, NodeType,
ScriptNode,