pub enum AgentTemplateType {
Autonomous,
ToolAgent,
Orchestrator,
Specialist,
MultiModal,
Custom(String),
}Expand description
The type of agent template
Variants§
Autonomous
Standalone autonomous agent
ToolAgent
Tool/function calling agent that wraps external APIs
Orchestrator
Workflow orchestrator that coordinates other agents
Specialist
Specialist agent optimized for a specific domain
MultiModal
Multi-modal agent handling text, image, audio, etc.
Custom(String)
Custom agent type
Trait Implementations§
Source§impl Clone for AgentTemplateType
impl Clone for AgentTemplateType
Source§fn clone(&self) -> AgentTemplateType
fn clone(&self) -> AgentTemplateType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AgentTemplateType
impl Debug for AgentTemplateType
Source§impl<'de> Deserialize<'de> for AgentTemplateType
impl<'de> Deserialize<'de> for AgentTemplateType
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
impl Eq for AgentTemplateType
Source§impl PartialEq for AgentTemplateType
impl PartialEq for AgentTemplateType
Source§fn eq(&self, other: &AgentTemplateType) -> bool
fn eq(&self, other: &AgentTemplateType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentTemplateType
impl Serialize for AgentTemplateType
impl StructuralPartialEq for AgentTemplateType
Auto Trait Implementations§
impl Freeze for AgentTemplateType
impl RefUnwindSafe for AgentTemplateType
impl Send for AgentTemplateType
impl Sync for AgentTemplateType
impl Unpin for AgentTemplateType
impl UnsafeUnpin for AgentTemplateType
impl UnwindSafe for AgentTemplateType
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