pub trait Agent: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn description(&self) -> &str;
fn config(&self) -> &AgentConfig;
}Expand description
High-level agent trait
Required Methods§
Sourcefn description(&self) -> &str
fn description(&self) -> &str
Get agent description
Sourcefn config(&self) -> &AgentConfig
fn config(&self) -> &AgentConfig
Get agent configuration