lc-agents 0.20.1

Agent system for langchainrust — ReAct, FunctionCalling, PlanExecute, CRAG, AdaptiveRAG, DeepResearch, Handoffs, Streaming
Documentation
1
2
3
4
5
6
7
8
9
10
//! Streaming Tool Calls
//!
//! Provides a streaming agent that emits LLM text token by token and exposes
//! tool-call state.

pub mod state;
pub mod tool_call_stream;

pub use state::{AgentStreamEvent, ToolCallState};
pub use tool_call_stream::StreamingFunctionCallingAgent;