pub struct ModelLimits {
pub context_window_tokens: NonZeroUsize,
pub output_token_capacity: Option<NonZeroUsize>,
}Fields§
§context_window_tokens: NonZeroUsizeThe prompt budget: the maximum input tokens the provider accepts for this model on this route. History pruning and the UI measure against this — not the model’s total context (input + output), which would over-budget by the whole response reservation.
output_token_capacity: Option<NonZeroUsize>Implementations§
Source§impl ModelLimits
impl ModelLimits
Trait Implementations§
Source§impl Clone for ModelLimits
impl Clone for ModelLimits
Source§fn clone(&self) -> ModelLimits
fn clone(&self) -> ModelLimits
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 ModelLimits
impl Debug for ModelLimits
Source§impl Default for ModelLimits
impl Default for ModelLimits
Source§impl<'de> Deserialize<'de> for ModelLimits
impl<'de> Deserialize<'de> for ModelLimits
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
impl Eq for ModelLimits
Source§impl PartialEq for ModelLimits
impl PartialEq for ModelLimits
Source§fn eq(&self, other: &ModelLimits) -> bool
fn eq(&self, other: &ModelLimits) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ModelLimits
impl Serialize for ModelLimits
impl StructuralPartialEq for ModelLimits
Auto Trait Implementations§
impl Freeze for ModelLimits
impl RefUnwindSafe for ModelLimits
impl Send for ModelLimits
impl Sync for ModelLimits
impl Unpin for ModelLimits
impl UnsafeUnpin for ModelLimits
impl UnwindSafe for ModelLimits
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