oris-runtime 0.15.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
pub mod checkpointer;
pub mod config;
pub mod error;
pub mod memory;
pub mod serde;
pub mod snapshot;
pub mod store;

#[cfg(feature = "sqlite-persistence")]
pub mod sqlite;

#[cfg(test)]
mod tests;

#[cfg(test)]
mod tests_memory;

pub use checkpointer::*;
pub use config::*;
pub use error::*;
pub use memory::*;
pub use serde::*;
pub use snapshot::*;
pub use store::*;

#[cfg(feature = "sqlite-persistence")]
pub use sqlite::*;