tarzi 0.2.3

Rust-native lite search for AI applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Web content fetching module
//!
//! Access cascade (always): plain HTTP → headless browser (when `fetcher.browser` is enabled).

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

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