praxis-graph 0.2.0

React agent orchestrator for building AI agent workflows with LLM and tool execution
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod state;
pub mod config;
pub mod events;
pub mod output;

pub use state::{GraphState, GraphInput};
pub use config::{GraphConfig, LLMConfig, ContextPolicy, Provider};
pub use events::StreamEvent;
pub use output::GraphOutput;