cortex_runtime/map/mod.rs
1//! SiteMap data structures, serialization, and query operations.
2//!
3//! The SiteMap is Cortex's primary data structure — a binary graph representing
4//! an entire website with nodes (pages), edges (links), feature vectors (128 floats
5//! per page), and action opcodes.
6
7pub mod builder;
8pub mod deserializer;
9pub mod reader;
10pub mod serializer;
11pub mod types;
12
13pub use builder::SiteMapBuilder;
14pub use types::*;