pub struct FusionScores {
pub code_gen: f64,
pub debugging: f64,
pub reasoning: f64,
pub tool_use: f64,
}Expand description
Validated HydraFusion routing capability scores.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§code_gen: f64Code-generation capability score returned by the authenticated router.
debugging: f64Debugging capability score returned by the authenticated router.
reasoning: f64Reasoning capability score returned by the authenticated router.
tool_use: f64Tool-use capability score returned by the authenticated router.
Trait Implementations§
Source§impl Clone for FusionScores
impl Clone for FusionScores
Source§fn clone(&self) -> FusionScores
fn clone(&self) -> FusionScores
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 FusionScores
impl Debug for FusionScores
Source§impl Default for FusionScores
impl Default for FusionScores
Source§fn default() -> FusionScores
fn default() -> FusionScores
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FusionScores
impl<'de> Deserialize<'de> for FusionScores
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FusionScores
impl RefUnwindSafe for FusionScores
impl Send for FusionScores
impl Sync for FusionScores
impl Unpin for FusionScores
impl UnsafeUnpin for FusionScores
impl UnwindSafe for FusionScores
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