reagent-rs 0.2.1

A Rust library for building AI agents with MCP & custom tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod default_flow;
mod call_tools;
mod reply_without_tools;
mod reply;
mod flow_types;

pub use self::{
    default_flow::default_flow,
    call_tools::call_tools_flow,
    reply_without_tools::reply_without_tools_flow,
    reply::reply_flow,
    flow_types::*
};