Skip to main content

lc_agents/react/
mod.rs

1// src/agents/react/mod.rs
2//! ReAct Agent implementation
3//!
4//! Based on the "ReAct: Synergizing Reasoning and Acting in Language Models" paper.
5
6pub mod agent;
7pub mod parser;
8pub mod prompt;
9
10pub use agent::ReActAgent;
11pub use parser::ReActOutputParser;