oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
#![allow(ambiguous_glob_reexports)]

pub mod openai;
pub use openai::*;

pub mod claude;
pub use claude::*;

pub mod ollama;
#[allow(unused_imports)]
pub use ollama::*;

pub mod qwen;
pub use qwen::*;

pub mod deepseek;
pub use deepseek::*;

#[cfg(feature = "mistralai")]
pub mod mistralai;
#[cfg(feature = "mistralai")]
pub use mistralai::*;

#[cfg(feature = "gemini")]
pub mod gemini;
#[cfg(feature = "gemini")]
pub use gemini::*;

#[cfg(feature = "bedrock")]
pub mod bedrock;
#[cfg(feature = "bedrock")]
pub use bedrock::*;

pub mod huggingface;
pub use huggingface::*;