pub struct AgentModelConfigInput {
pub provider: Option<String>,
pub model_ref: Option<String>,
pub endpoint_url: Option<String>,
pub api_key_ref: Option<String>,
pub capabilities: Option<Map<String, Value>>,
}Expand description
Accepted and IGNORED. The platform default is applied on create and preserved on update, so sending this changes nothing. Kept so existing clients do not start failing validation.
Fields§
§provider: Option<String>§model_ref: Option<String>§endpoint_url: Option<String>§api_key_ref: Option<String>§capabilities: Option<Map<String, Value>>Trait Implementations§
Source§impl Clone for AgentModelConfigInput
impl Clone for AgentModelConfigInput
Source§fn clone(&self) -> AgentModelConfigInput
fn clone(&self) -> AgentModelConfigInput
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 AgentModelConfigInput
impl Debug for AgentModelConfigInput
Source§impl Default for AgentModelConfigInput
impl Default for AgentModelConfigInput
Source§fn default() -> AgentModelConfigInput
fn default() -> AgentModelConfigInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentModelConfigInput
impl<'de> Deserialize<'de> for AgentModelConfigInput
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 AgentModelConfigInput
impl PartialEq for AgentModelConfigInput
Source§impl Serialize for AgentModelConfigInput
impl Serialize for AgentModelConfigInput
impl StructuralPartialEq for AgentModelConfigInput
Auto Trait Implementations§
impl Freeze for AgentModelConfigInput
impl RefUnwindSafe for AgentModelConfigInput
impl Send for AgentModelConfigInput
impl Sync for AgentModelConfigInput
impl Unpin for AgentModelConfigInput
impl UnsafeUnpin for AgentModelConfigInput
impl UnwindSafe for AgentModelConfigInput
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