feat: implemented support for the graph executor

This commit is contained in:
2026-05-13 14:29:45 -06:00
parent 23dc624163
commit cc8b48c355
4 changed files with 324 additions and 4 deletions
+2
View File
@@ -2,6 +2,7 @@
//! JSON state, composed of agent/script/approval/input/end nodes.
pub mod agent;
pub mod executor;
pub mod parser;
pub mod script;
pub mod state;
@@ -10,6 +11,7 @@ pub mod user_interaction;
pub mod validator;
pub use agent::AgentNodeExecutor;
pub use executor::GraphExecutor;
pub use parser::{GraphParser, agent_has_graph, load_agent_graph};
pub use script::ScriptExecutor;
pub use state::{StateManager, StateRepresentation};