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
//! Unified error types for the echo-agent framework.
//!
//! All errors are collected under the `Error` enum with variants for LLM
//! failures, tool errors, MCP issues, and more.
//!
//! The `Result<T>` type alias is `std::result::Result<T, Error>`. Use
//! `use echo_agent::prelude::*` to bring it into scope.

/// Direct re-exports from `echo_core::error`.
pub mod core {
    pub use echo_core::error::*;
}

pub use echo_core::error::*;