llm_as_dom/lib.rs
1//! LLM-as-DOM: AI browser pilot with cheap LLM + heuristics.
2//!
3//! A headless browser pilot that compresses web pages to ~100-300 tokens
4//! and uses heuristics + a cheap LLM to accomplish goals autonomously.
5
6pub mod a11y;
7pub mod audit;
8pub mod backend;
9pub mod cloaking;
10pub mod crypto;
11pub mod engine;
12pub mod error;
13pub mod heuristics;
14pub mod intent;
15pub mod locate;
16pub mod network;
17pub mod oauth;
18pub mod observer;
19pub mod pilot;
20pub mod playbook;
21pub mod profile;
22pub mod sanitize;
23pub mod selector;
24pub mod semantic;
25pub mod session;
26pub mod target;
27pub mod watch;
28
29pub use error::Error;