oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
#![cfg(all(feature = "execution-server", feature = "sqlite-persistence"))]

use std::env;
use std::path::PathBuf;

use oris_runtime::execution_server::{
    canonical_runtime_benchmark_baseline_path, write_runtime_benchmark_suite,
    RUNTIME_BENCHMARK_BASELINE_DOC_PATH,
};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut args = env::args_os().skip(1);
    let output_path = args
        .next()
        .map(PathBuf::from)
        .unwrap_or_else(canonical_runtime_benchmark_baseline_path);
    let sample_size = args
        .next()
        .and_then(|raw| raw.to_str().and_then(|s| s.parse::<u32>().ok()))
        .unwrap_or(5);

    write_runtime_benchmark_suite(&output_path, sample_size)?;
    eprintln!(
        "Wrote runtime benchmark report to {} (canonical baseline: {}).",
        output_path.display(),
        RUNTIME_BENCHMARK_BASELINE_DOC_PATH,
    );
    Ok(())
}