pub struct RuntimeModel {
pub model: String,
pub reasoning_effort: String,
pub context_window_tokens: u64,
pub max_input_tokens: u64,
}Expand description
The configured Kennedy model, returned directly instead of through a catalog endpoint.
Fields§
§model: String§reasoning_effort: String§context_window_tokens: u64§max_input_tokens: u64Trait Implementations§
Source§impl Clone for RuntimeModel
impl Clone for RuntimeModel
Source§fn clone(&self) -> RuntimeModel
fn clone(&self) -> RuntimeModel
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 RuntimeModel
impl Debug for RuntimeModel
impl Eq for RuntimeModel
Source§impl PartialEq for RuntimeModel
impl PartialEq for RuntimeModel
impl StructuralPartialEq for RuntimeModel
Auto Trait Implementations§
impl Freeze for RuntimeModel
impl RefUnwindSafe for RuntimeModel
impl Send for RuntimeModel
impl Sync for RuntimeModel
impl Unpin for RuntimeModel
impl UnsafeUnpin for RuntimeModel
impl UnwindSafe for RuntimeModel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.