lc-agents 0.8.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 实现
//!
//! 基于 "ReAct: Synergizing Reasoning and Acting in Language Models" 论文。

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

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