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