1 2 3 4 5 6 7 8 9 10 11
// src/agents/react/mod.rs //! ReAct Agent 实现 //! //! 基于 "ReAct: Synergizing Reasoning and Acting in Language Models" 论文。 pub mod parser; pub mod prompt; pub mod agent; pub use parser::ReActOutputParser; pub use agent::ReActAgent;