pub struct AtifAgent {
pub name: String,
pub version: String,
pub model_name: Option<String>,
pub extra: Option<Value>,
}Expand description
Agent configuration metadata.
Fields§
§name: StringAgent system name (e.g., “vtcode”).
version: StringAgent system version.
model_name: Option<String>Default LLM model used. Step-level model_name overrides this.
extra: Option<Value>Optional custom agent metadata.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AtifAgent
impl<'de> Deserialize<'de> for AtifAgent
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 AtifAgent
impl RefUnwindSafe for AtifAgent
impl Send for AtifAgent
impl Sync for AtifAgent
impl Unpin for AtifAgent
impl UnsafeUnpin for AtifAgent
impl UnwindSafe for AtifAgent
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