octoroute 1.0.0

Intelligent multi-model router for self-hosted LLMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model client and selection logic
//!
//! Provides wrappers around `open-agent-sdk` clients and intelligent
//! model selection from multi-model configuration.

pub mod client;
pub mod endpoint_name;
pub mod health;
pub mod selector;

pub use client::ModelClient;
pub use endpoint_name::{EndpointName, ExclusionSet};
pub use health::{EndpointHealth, HealthChecker, HealthError};
pub use selector::{ModelSelector, TierSelector};