reagent-rs 0.2.0

A Rust library for building AI agents with MCP & custom tools
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::{reply_flow, Flow, prebuilds::StatelessPrebuild, AgentBuilder};

impl StatelessPrebuild {
    pub fn reply() -> AgentBuilder {
        AgentBuilder::default()
            .set_flow(Flow::Custom(reply_flow))
            .set_clear_history_on_invocation(true)
            .set_name("Stateless-reply_using_tools")
    }
}