echo_agent 0.1.4

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
11
12
13
14
15
16
17
//! Built-in framework-level tools
//!
//! These are core to the agent execution loop. Domain-specific tools
//! (git, browser, data, media, etc.) live in the `echo_tools` crate.

#[cfg(feature = "subagent")]
pub(crate) mod agent_dispatch;
pub(crate) mod answer;
#[cfg(feature = "human-loop")]
pub(crate) mod human_in_loop;
pub(crate) mod memory;
#[cfg(feature = "tasks")]
pub(crate) mod plan;
#[cfg(feature = "tasks")]
pub(crate) mod task;
/// Think tool for reasoning and reflection.
pub mod think;