pub struct ModelInfo {
pub id: String,
pub display_name: String,
pub max_tokens: u32,
pub provider: String,
pub pricing: Option<ModelPricing>,
}Expand description
Information about a model
Fields§
§id: StringModel ID
display_name: StringDisplay name
max_tokens: u32Maximum context window size
provider: StringProvider name
pricing: Option<ModelPricing>Optional pricing information
Implementations§
Source§impl ModelInfo
impl ModelInfo
Sourcepub fn get_max_tokens(model_id: &str) -> u32
pub fn get_max_tokens(model_id: &str) -> u32
Get maximum tokens for a given model ID
Sourcepub fn get_pricing(model_id: &str) -> ModelPricing
pub fn get_pricing(model_id: &str) -> ModelPricing
Get pricing information for a given model ID
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ModelInfo
impl<'de> Deserialize<'de> for ModelInfo
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 ModelInfo
impl RefUnwindSafe for ModelInfo
impl Send for ModelInfo
impl Sync for ModelInfo
impl Unpin for ModelInfo
impl UnwindSafe for ModelInfo
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