car-browser 0.8.0

Browser automation and perception pipeline for Common Agent Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Perception pipeline — converts raw browser state into structured UiMap data.
//!
//! The pipeline takes screenshots and accessibility trees from a `BrowserBackend`
//! and produces `UiMap` objects that the AI agent reasons about.

pub mod ax_converter;
pub mod diff;
pub mod formatting;
pub mod pipeline;
pub mod signals;
pub mod ui_map;

pub use pipeline::PerceptionPipeline;
pub use ui_map::{UiElement, UiMap, UiRole, UiState};