echo_agent 0.1.3

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
//! Tasks facade
//!
//! This module is a thin re-export of `echo_orchestration::tasks`.
//! The authoritative implementation is in `echo_orchestration`; if you need
//! to directly depend on the split crate, use
//! [`crate::workspace::orchestration::tasks`].

/// Direct re-exports from `echo_orchestration::tasks`.
pub mod orchestration {
    pub use echo_orchestration::tasks::*;
}

pub use echo_orchestration::tasks::*;