echo_agent 0.2.0

Production-grade AI Agent framework for Rust — ReAct engine, multi-agent, memory, streaming, MCP, IM channels, workflows
Documentation
1
2
3
4
5
6
7
8
9
10
//! Streaming execution loop — modular implementation.
//!
//! - `processor` — SSE chunk → AgentEvent conversion
//! - `llm_stream` — LLM HTTP stream creation with retry
//! - `entry` — Public entry points (`run_stream`, `run_stream_with_message`)
//! - `runner` — Core ReAct loop (`run_stream_inner`)

pub(crate) mod entry;
pub(crate) mod llm_stream;
pub(crate) mod processor;