pub enum MultiAgentMode {
ExplicitRequestOnly,
Proactive,
Custom(String),
}Expand description
Controls the effective multi-agent delegation instructions for a turn. custom means the configured mode hint defines the policy instead of a built-in policy.
JSON schema
{
"description": "Controls the effective multi-agent delegation instructions for a turn. `custom` means the configured mode hint defines the policy instead of a built-in policy.",
"oneOf": [
{
"type": "string",
"enum": [
"explicitRequestOnly",
"proactive"
]
},
{
"title": "CustomMultiAgentMode",
"type": "object",
"required": [
"custom"
],
"properties": {
"custom": {
"type": "string"
}
},
"additionalProperties": false
}
]
}Variants§
Trait Implementations§
Source§impl Clone for MultiAgentMode
impl Clone for MultiAgentMode
Source§fn clone(&self) -> MultiAgentMode
fn clone(&self) -> MultiAgentMode
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 MultiAgentMode
impl Debug for MultiAgentMode
Source§impl<'de> Deserialize<'de> for MultiAgentMode
impl<'de> Deserialize<'de> for MultiAgentMode
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
Auto Trait Implementations§
impl Freeze for MultiAgentMode
impl RefUnwindSafe for MultiAgentMode
impl Send for MultiAgentMode
impl Sync for MultiAgentMode
impl Unpin for MultiAgentMode
impl UnsafeUnpin for MultiAgentMode
impl UnwindSafe for MultiAgentMode
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