pub struct ModelRecommendation {
pub model_name: String,
pub reason: String,
pub similarity_score: f64,
}Expand description
Model family recommendation
Fields§
§model_name: StringRecommended model name
reason: StringReason for recommendation
similarity_score: f64Similarity score (0.0-1.0)
Trait Implementations§
Source§impl Clone for ModelRecommendation
impl Clone for ModelRecommendation
Source§fn clone(&self) -> ModelRecommendation
fn clone(&self) -> ModelRecommendation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ModelRecommendation
impl RefUnwindSafe for ModelRecommendation
impl Send for ModelRecommendation
impl Sync for ModelRecommendation
impl Unpin for ModelRecommendation
impl UnwindSafe for ModelRecommendation
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