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 json_loader;
pub use json_loader::*;

mod markdown_loader;
pub use markdown_loader::*;

mod tsv_loader;
pub use tsv_loader::*;

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

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

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