enact-core 0.0.2

Core agent runtime for Enact - Graph-Native AI agents
Documentation
//! Graph module - DAG execution engine and flow semantics

mod checkpoint;
mod checkpoint_store;
mod compiled;
mod edge;
mod graph_schema;
pub mod loader;
pub mod schema;

pub mod node;

pub use checkpoint::Checkpoint;
pub use checkpoint_store::{CheckpointStore, InMemoryCheckpointStore};
pub use compiled::CompiledGraph;
pub use edge::{Edge, EdgeTarget};
pub use graph_schema::StateGraph;
pub use loader::{GraphLoader, GraphLoaderContext};
pub use node::{FunctionNode, LlmNode, Node, NodeState};