pub struct ModelRecommendation {
pub model_id: String,
pub reason: String,
pub confidence_score: u8,
pub cost_range: CostRange,
pub strengths: Vec<String>,
pub limitations: Vec<String>,
}
Expand description
Individual model recommendation
Fields§
§model_id: String
Model ID
reason: String
Reason for recommendation
confidence_score: u8
Confidence score (1-10)
cost_range: CostRange
Expected cost range for typical usage
strengths: Vec<String>
Specific strengths for this use case
limitations: Vec<String>
Potential limitations
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 moreSource§impl Debug for ModelRecommendation
impl Debug for ModelRecommendation
Source§impl<'de> Deserialize<'de> for ModelRecommendation
impl<'de> Deserialize<'de> for ModelRecommendation
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 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