pub struct SubagentSettingsEntry {
pub auto_invoke: Option<bool>,
pub context_tier: Option<SubagentSettingsEntryContextTier>,
pub effort_level: Option<String>,
pub model: Option<String>,
pub model_policy: Option<AgentModelPolicy>,
}Expand description
Subagent model, reasoning effort, context tier, and auto-invocation settings
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§auto_invoke: Option<bool>Whether this agent’s runtime-defined proactive invocation prompting is enabled, if supported. Currently consumed by the built-in rubber-duck agent.
context_tier: Option<SubagentSettingsEntryContextTier>Context tier override for matching subagents
effort_level: Option<String>Reasoning effort override for matching subagents
model: Option<String>Model override for matching subagents
model_policy: Option<AgentModelPolicy>Whether the configured model strategy is preferred or required
Trait Implementations§
Source§impl Clone for SubagentSettingsEntry
impl Clone for SubagentSettingsEntry
Source§impl Debug for SubagentSettingsEntry
impl Debug for SubagentSettingsEntry
Source§impl Default for SubagentSettingsEntry
impl Default for SubagentSettingsEntry
Source§impl<'de> Deserialize<'de> for SubagentSettingsEntry
impl<'de> Deserialize<'de> for SubagentSettingsEntry
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 SubagentSettingsEntry
impl RefUnwindSafe for SubagentSettingsEntry
impl Send for SubagentSettingsEntry
impl Sync for SubagentSettingsEntry
impl Unpin for SubagentSettingsEntry
impl UnsafeUnpin for SubagentSettingsEntry
impl UnwindSafe for SubagentSettingsEntry
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