feat: implemented structured logging for graph execution

This commit is contained in:
2026-05-15 13:17:42 -06:00
parent 3ef20fc2fe
commit d47371f5a0
3 changed files with 238 additions and 49 deletions
+2
View File
@@ -5,6 +5,7 @@ pub mod agent;
pub mod dispatch;
pub mod executor;
pub mod llm;
pub mod logging;
pub mod parser;
pub mod script;
pub mod state;
@@ -17,6 +18,7 @@ pub use agent::AgentNodeExecutor;
pub use dispatch::{active_agent_graph_name, run_active_agent_graph};
pub use executor::GraphExecutor;
pub use llm::LlmNodeExecutor;
pub use logging::GraphLogger;
pub use parser::{GraphParser, agent_has_graph};
pub use script::ScriptExecutor;
pub use state::{StateManager, StateRepresentation};