feat: Added direct script invocation support for graph-based agents

This commit is contained in:
2026-05-13 12:35:10 -06:00
parent cf666eb2c6
commit c66faa22dc
3 changed files with 514 additions and 1 deletions
+2
View File
@@ -2,11 +2,13 @@
//! JSON state, composed of agent/script/approval/input/end nodes.
pub mod parser;
pub mod script;
pub mod state;
pub mod types;
pub mod validator;
pub use parser::{GraphParser, agent_has_graph, load_agent_graph};
pub use script::ScriptExecutor;
pub use state::{StateManager, StateRepresentation};
pub use types::{
AgentNode, ApprovalNode, EndNode, Graph, GraphSettings, GraphState, InputNode, Node, NodeType,