Skip to main content

car_browser/perception/
mod.rs

1//! Perception pipeline — converts raw browser state into structured UiMap data.
2//!
3//! The pipeline takes screenshots and accessibility trees from a `BrowserBackend`
4//! and produces `UiMap` objects that the AI agent reasons about.
5
6pub mod ax_converter;
7pub mod diff;
8pub mod formatting;
9pub mod pipeline;
10pub mod signals;
11pub mod ui_map;
12
13pub use pipeline::PerceptionPipeline;
14pub use ui_map::{UiElement, UiMap, UiRole, UiState};