agent-first-http 0.5.0

Give an AI agent any URL and get back a usable page — fetched directly, or rendered in a real browser when the page needs one — with a human able to take over the same browser for a login, captcha, or 2FA.
Documentation
//! Client-side SDK. Never imports `chromiumoxide`; speaks CDP over raw
//! WebSocket and HTTP over `reqwest`. Everything browser-dependent goes
//! through an `afhttp host` endpoint.

pub mod capabilities;
pub mod cdp;
pub mod client;
pub mod endpoint;
pub mod fetch;
pub mod health;
pub mod profile;

pub mod inline;

pub use client::Client;
pub use endpoint::Endpoint;
pub use fetch::{FetchBuilder, FetchCookie, FetchCookieSameSite, FetchResult, RenderMode, Wait};
#[cfg(feature = "host")]
pub use inline::InlineConfig;