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
//! Media processing tools for images and documents.
//!
//! Provides tools for:
//! - Fetching images from URLs and converting to base64
//! - Enhanced web fetch with image support
//! - Document processing (PDF, images, etc.)

pub mod image_fetch;
pub mod web_fetch_enhanced;

pub use image_fetch::ImageFetchTool;
pub use web_fetch_enhanced::WebFetchToolEnhanced;