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
use oris_runtime::tools::{Tool, Wolfram};

#[tokio::main]
async fn main() {
    let wolfram = Wolfram::default().with_excludes(&["Plot"]);
    let input = "Solve x^2 - 2x + 1 = 0";
    let result = wolfram.call(input).await;

    println!("{}", result.unwrap());
}