agent-first-http 0.13.0

Give your AI agent its own private browser — so it reads the real page, past logins and bot walls, without ever touching yours.
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 takeover;

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;
pub use takeover::{TakeoverHandoffResponse, TakeoverUiSession};