Skip to main content

rbp_server/analysis/
mod.rs

1//! Training result analysis and query interface.
2//!
3//! This module provides access to stored abstractions, blueprints, and metrics
4//! through both a programmatic API and interactive CLI.
5//!
6//! ## Core Types
7//!
8//! - [`API`] — PostgreSQL-backed query interface for training artifacts
9//! - [`Query`] — Structured query builders for common lookups
10//! - [`CLI`] — Interactive command-line interface
11//!
12//! ## HTTP Handlers
13//!
14//! The [`handlers`] submodule exposes actix-web routes for the analysis API,
15//! supporting neighborhood queries, histogram retrieval, and blueprint lookup.
16mod api;
17mod cli;
18pub mod handlers;
19mod query;
20
21pub use api::*;
22pub use cli::*;
23pub use query::*;