Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct AtifAgentInfo {
pub name: String,
pub version: String,
pub model_name: Option<String>,
pub tool_definitions: Option<Vec<Json>>,
pub extra: Option<Json>,
}
Information about the agent that produced the trajectory.
name: StringHuman-readable agent name.
version: StringAgent version string.
model_name: Option<String>Default LLM model name used by the agent.
tool_definitions: Option<Vec<Json>>Tool definitions available to the agent.
extra: Option<Json>Extra metadata.
impl Clone for AtifAgentInfoimpl Clone for AtifAgentInfo
clonefn clone(&self) -> AtifAgentInfo
clone_fromfn clone_from(&mut self, source: &Self)
impl Debug for AtifAgentInfoimpl Debug for AtifAgentInfo
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'de> Deserialize<'de> for AtifAgentInfoimpl<'de> Deserialize<'de> for AtifAgentInfo
deserializefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Serialize for AtifAgentInfoimpl Serialize for AtifAgentInfo
serializefn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,