Struct Atif Agent Info

View as Markdown

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.

Fields

name: String

Human-readable agent name.

version: String

Agent 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.

Trait Implementations

impl Clone for AtifAgentInfo

impl Clone for AtifAgentInfo

clone

fn clone(&self) -> AtifAgentInfo

clone_from

fn clone_from(&mut self, source: &Self)

impl Debug for AtifAgentInfo

impl Debug for AtifAgentInfo

fmt

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'de> Deserialize<'de> for AtifAgentInfo

impl<'de> Deserialize<'de> for AtifAgentInfo

deserialize

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,

impl Serialize for AtifAgentInfo

impl Serialize for AtifAgentInfo

serialize

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,