nexus/lib.rs
1//! Nexus - Distributed LLM model serving orchestrator
2//!
3//! This library provides the core functionality for managing and routing requests
4//! to heterogeneous LLM inference backends.
5
6pub mod agent;
7pub mod api;
8pub mod cli;
9pub mod config;
10pub mod dashboard;
11pub mod discovery;
12pub mod health;
13pub mod logging;
14pub mod metrics;
15pub mod queue;
16pub mod registry;
17pub mod routing;