everruns 0.17.26

Build and run durable AI agents in Rust — the application-facing entrypoint to the Everruns agentic framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
struct Calculator;

impl Calculator {
    /// Has a `self` receiver.
    #[everruns::tool]
    async fn add(&self, x: i64) -> i64 {
        x
    }
}

fn main() {}