pub struct ModelPolicy {
pub provider: Option<String>,
pub model: Option<String>,
pub model_tier: Option<String>,
pub temperature: Option<f64>,
pub max_tokens: Option<i64>,
}Fields§
§provider: Option<String>§model: Option<String>§model_tier: Option<String>§temperature: Option<f64>§max_tokens: Option<i64>Trait Implementations§
Source§impl Clone for ModelPolicy
impl Clone for ModelPolicy
Source§fn clone(&self) -> ModelPolicy
fn clone(&self) -> ModelPolicy
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 ModelPolicy
impl Debug for ModelPolicy
Source§impl Default for ModelPolicy
impl Default for ModelPolicy
Source§fn default() -> ModelPolicy
fn default() -> ModelPolicy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPolicywhere
ModelPolicy: Default,
impl<'de> Deserialize<'de> for ModelPolicywhere
ModelPolicy: Default,
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 ModelPolicy
impl PartialEq for ModelPolicy
Source§impl Serialize for ModelPolicy
impl Serialize for ModelPolicy
impl StructuralPartialEq for ModelPolicy
Auto Trait Implementations§
impl Freeze for ModelPolicy
impl RefUnwindSafe for ModelPolicy
impl Send for ModelPolicy
impl Sync for ModelPolicy
impl Unpin for ModelPolicy
impl UnsafeUnpin for ModelPolicy
impl UnwindSafe for ModelPolicy
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