echo_tools 0.1.4

Domain tools for echo-agent framework (chart, data, database, git, media, web, rag)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Media processing tools for images and documents.
//!
//! Provides tools for:
//! - Fetching images from URLs and converting to base64
//! - Enhanced web fetch with image support

pub mod image_fetch;
pub mod web_fetch_enhanced;

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