praxis-graph 0.2.0

React agent orchestrator for building AI agent workflows with LLM and tool execution
Documentation
pub mod types;
pub mod node;
pub mod router;
pub mod nodes;
pub mod graph;
pub mod builder;
pub mod client_factory;
pub mod streaming;

pub use node::{Node, NodeType, EventSender};
pub use router::{Router, NextNode, SimpleRouter};
pub use graph::{Graph, PersistenceContext};
pub use builder::{GraphBuilder, PersistenceConfig};
pub use client_factory::ClientFactory;
pub use streaming::{StreamAdapter, OpenAIStreamAdapter};

pub use types::{
    GraphState, GraphInput, GraphConfig, LLMConfig, ContextPolicy, StreamEvent, Provider, GraphOutput,
};