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
12
13
14
15
16
//! Web tools module
//!
//! Provides web search, page fetching, and content extraction capabilities:
//!
//! - [`WebSearchTool`][]: Search for information on the internet
//! - [`WebFetchTool`][]: Fetch web page content and convert to readable text
//! - [`WebExtractTool`][]: Extract structured content from HTML

pub mod extract;
pub mod fetch;
pub mod providers;
pub mod search;

pub use extract::WebExtractTool;
pub use fetch::WebFetchTool;
pub use search::WebSearchTool;