pub struct ModelHealthReport {Show 18 fields
pub total_models: usize,
pub available_models: usize,
pub local_models: usize,
pub remote_models: usize,
pub defaults: Vec<ModelDefaultHealth>,
pub providers: Vec<ModelProviderHealth>,
pub capabilities: Vec<ModelCapabilityHealth>,
pub routing_prefer_local: bool,
pub routing_quality_first_cold_start: bool,
pub routing_min_observations: u64,
pub routing_bootstrap_min_task_observations: u64,
pub routing_bootstrap_quality_floor: f64,
pub routing_quality_weight: f64,
pub routing_latency_weight: f64,
pub routing_cost_weight: f64,
pub routing_scenarios: Vec<RoutingScenarioHealth>,
pub benchmark_priors: Vec<ModelBenchmarkPriorHealth>,
pub speech: SpeechHealthReport,
}Fields§
§total_models: usize§available_models: usize§local_models: usize§remote_models: usize§defaults: Vec<ModelDefaultHealth>§providers: Vec<ModelProviderHealth>§capabilities: Vec<ModelCapabilityHealth>§routing_prefer_local: bool§routing_quality_first_cold_start: bool§routing_min_observations: u64§routing_bootstrap_min_task_observations: u64§routing_bootstrap_quality_floor: f64§routing_quality_weight: f64§routing_latency_weight: f64§routing_cost_weight: f64§routing_scenarios: Vec<RoutingScenarioHealth>§benchmark_priors: Vec<ModelBenchmarkPriorHealth>§speech: SpeechHealthReportTrait Implementations§
Source§impl Clone for ModelHealthReport
impl Clone for ModelHealthReport
Source§fn clone(&self) -> ModelHealthReport
fn clone(&self) -> ModelHealthReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ModelHealthReport
impl Debug for ModelHealthReport
Auto Trait Implementations§
impl Freeze for ModelHealthReport
impl RefUnwindSafe for ModelHealthReport
impl Send for ModelHealthReport
impl Sync for ModelHealthReport
impl Unpin for ModelHealthReport
impl UnsafeUnpin for ModelHealthReport
impl UnwindSafe for ModelHealthReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more