oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
1
2
3
4
5
6
7
8
9
10
11
12
mod enhanced_store;
mod filter;
mod implementations;
mod store_value;

pub use enhanced_store::{EnhancedToolStore, StoreError};
pub use filter::StoreFilter;
pub use implementations::{EnhancedInMemoryStore, EnhancedInMemoryStoreConfig};
pub use store_value::StoreValue;

// Re-export for convenience
pub use enhanced_store::EnhancedToolStore as _;