pub struct ModelPrice {
pub input_per_1k: f64,
pub output_per_1k: f64,
}Expand description
Price of one model, in USD per 1,000 tokens.
Fields§
§input_per_1k: f64USD per 1,000 input (prompt) tokens.
output_per_1k: f64USD per 1,000 output (completion) tokens.
Implementations§
Source§impl ModelPrice
impl ModelPrice
Sourcepub fn cost_of(&self, prompt_tokens: usize, completion_tokens: usize) -> f64
pub fn cost_of(&self, prompt_tokens: usize, completion_tokens: usize) -> f64
Prices one call. Pure function — the core of the whole tracker.
Sourcepub fn blended_per_1k(&self) -> f64
pub fn blended_per_1k(&self) -> f64
Single comparable cost figure for routing weights, assuming a representative 3:1 prompt:completion traffic mix (75% input, 25% output). Callers that know their real mix should price calls directly.
Trait Implementations§
Source§impl Clone for ModelPrice
impl Clone for ModelPrice
Source§fn clone(&self) -> ModelPrice
fn clone(&self) -> ModelPrice
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 moreimpl Copy for ModelPrice
Source§impl Debug for ModelPrice
impl Debug for ModelPrice
Source§impl<'de> Deserialize<'de> for ModelPrice
impl<'de> Deserialize<'de> for ModelPrice
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
Source§impl PartialEq for ModelPrice
impl PartialEq for ModelPrice
Source§impl Serialize for ModelPrice
impl Serialize for ModelPrice
impl StructuralPartialEq for ModelPrice
Auto Trait Implementations§
impl Freeze for ModelPrice
impl RefUnwindSafe for ModelPrice
impl Send for ModelPrice
impl Sync for ModelPrice
impl Unpin for ModelPrice
impl UnsafeUnpin for ModelPrice
impl UnwindSafe for ModelPrice
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