feat: Added initial support for native Loki agent nodes in the graph-based agent system

This commit is contained in:
2026-05-13 13:21:45 -06:00
parent 8bb55ffd75
commit 68f20fd6bd
3 changed files with 283 additions and 1 deletions
+2
View File
@@ -1,12 +1,14 @@
//! Graph-based agent orchestration. Declarative YAML workflows over a shared
//! JSON state, composed of agent/script/approval/input/end nodes.
pub mod agent;
pub mod parser;
pub mod script;
pub mod state;
pub mod types;
pub mod validator;
pub use agent::AgentNodeExecutor;
pub use parser::{GraphParser, agent_has_graph, load_agent_graph};
pub use script::ScriptExecutor;
pub use state::{StateManager, StateRepresentation};