tarzi 0.2.1

Rust-native lite search for AI applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Web content fetching module
//!
//! This module provides functionality for fetching web content using different methods:
//! - Plain HTTP requests
//! - Browser automation (headless and headed)

pub mod browser;
pub mod driver;
pub mod types;
pub mod webfetcher;

// Re-export main types and functions
pub use driver::{DriverConfig, DriverInfo, DriverManager, DriverStatus, DriverType};
pub use types::{FetchMode, WebFetcher};
pub use webfetcher::WebFetcher as WebFetcherImpl;