oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
mod file_backend;
pub use file_backend::*;

mod tool;
pub use tool::*;

mod runtime;
pub use runtime::*;

mod context;
pub use context::*;

mod store;
pub use store::*;

mod stream;
pub use stream::*;

mod schema;
pub use schema::*;

mod error;
pub use error::*;

pub use wolfram::*;
mod wolfram;

mod scraper;
pub use scraper::*;

mod sql;
pub use sql::*;

mod duckduckgo;
pub use duckduckgo::*;

mod serpapi;
pub use serpapi::*;

mod command_executor;
pub use command_executor::*;

mod text2speech;
pub use text2speech::*;

mod long_term_memory;
pub use long_term_memory::*;

mod sequential_thinking;
pub use sequential_thinking::*;

#[cfg(feature = "browser-use")]
mod browser_use;
#[cfg(feature = "browser-use")]
pub use browser_use::*;