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
13
14
15
16
17
//! Graph-aware HTTP execution server and benchmark helpers for `oris-runtime`.

pub mod api_handlers;
#[cfg(feature = "sqlite-persistence")]
pub mod benchmark_suite;
mod graph_bridge;

pub use api_handlers::{build_router, ApiRole, ExecutionApiState};
#[cfg(feature = "mcp-experimental")]
pub use api_handlers::{McpBootstrapConfig, McpCapabilityMapping, McpTransportKind};
#[cfg(feature = "sqlite-persistence")]
pub use benchmark_suite::{
    canonical_runtime_benchmark_baseline_path, run_runtime_benchmark_suite,
    runtime_benchmark_suite_pretty_json, write_runtime_benchmark_suite,
    RuntimeBenchmarkEnvironment, RuntimeBenchmarkMetric, RuntimeBenchmarkSuiteReport,
    RUNTIME_BENCHMARK_BASELINE_DOC_PATH,
};