enact-core 0.0.1

Core agent runtime for Enact - Graph-Native AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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 node::{FunctionNode, Node, NodeState};