pub enum AgentConfig {
StandardAgent(StandardDefinition),
SequentialWorkflowAgent(SequentialWorkflowDefinition),
DagWorkflowAgent(DagWorkflowDefinition),
CustomAgent(CustomAgentDefinition),
}Expand description
Unified agent configuration enum - combines all agent and workflow types
Variants§
StandardAgent(StandardDefinition)
Standard markdown-based agent
SequentialWorkflowAgent(SequentialWorkflowDefinition)
Sequential workflow agent with ordered steps
DagWorkflowAgent(DagWorkflowDefinition)
DAG workflow agent with dependency graph
CustomAgent(CustomAgentDefinition)
Custom TypeScript-based agent
Implementations§
Source§impl AgentConfig
impl AgentConfig
Sourcepub fn get_description(&self) -> &str
pub fn get_description(&self) -> &str
Get the description of the agent/workflow
Sourcepub fn get_working_directory(
&self,
package_config: Option<&DistriServerConfig>,
) -> Result<PathBuf>
pub fn get_working_directory( &self, package_config: Option<&DistriServerConfig>, ) -> Result<PathBuf>
Get the working directory with fallback chain: agent config -> package config -> DISTRI_HOME -> current_dir
Trait Implementations§
Source§impl Clone for AgentConfig
impl Clone for AgentConfig
Source§fn clone(&self) -> AgentConfig
fn clone(&self) -> AgentConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 AgentConfig
impl Debug for AgentConfig
Source§impl<'de> Deserialize<'de> for AgentConfig
impl<'de> Deserialize<'de> for AgentConfig
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 AgentConfig
impl RefUnwindSafe for AgentConfig
impl Send for AgentConfig
impl Sync for AgentConfig
impl Unpin for AgentConfig
impl UnwindSafe for AgentConfig
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