oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
// Public modules for external API
pub mod chain_trait;
pub use chain_trait::*;

pub mod conversational;
pub use conversational::*;

pub mod llm_chain;
pub use llm_chain::*;

// Internal modules (crate-only access)
mod sequential;
pub use sequential::*;

mod sql_database;
pub use sql_database::*;

mod stuff_documents;
pub use stuff_documents::*;

mod question_answering;
pub use question_answering::*;

mod conversational_retrieval_qa;
pub use conversational_retrieval_qa::*;

mod error;
pub use error::*;

pub mod options;
pub use options::*;