//! 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 use WebExtractTool;
pub use WebFetchTool;
pub use WebSearchTool;