lc-agents 0.20.0

Agent system for langchainrust — ReAct, FunctionCalling, PlanExecute, CRAG, AdaptiveRAG, DeepResearch, Handoffs, Streaming
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/agents/react/mod.rs
//! ReAct Agent implementation
//!
//! Based on the "ReAct: Synergizing Reasoning and Acting in Language Models" paper.

pub mod agent;
pub mod parser;
pub mod prompt;

pub use agent::ReActAgent;
pub use parser::ReActOutputParser;