lc-agents 0.19.0

Agent system for langchainrust — ReAct, FunctionCalling, PlanExecute, CRAG, AdaptiveRAG, DeepResearch, Handoffs, Streaming
Documentation
1
2
3
4
5
6
7
8
9
//! Plan-Execute Agent: plan - execute - replan

pub mod agent;
pub mod plan;
pub mod planner;

pub use agent::{PlanExecuteAgent, PlanExecuteError};
pub use plan::{Plan, PlanStep, StepStatus};
pub use planner::Planner;