Skip to main content

AgentStepPort

Trait AgentStepPort 

Source
pub trait AgentStepPort: Send + Sync {
    // Required methods
    fn resolve<'life0, 'life1, 'async_trait>(
        &'life0 self,
        name: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<Option<NamedAgentSpec>, String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn execute<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>(
        &'life0 self,
        spec: &'life1 NamedAgentSpec,
        prompt: Value,
        model: Option<&'life2 str>,
        effort: Option<&'life3 str>,
        capabilities: &'life4 BTreeSet<String>,
        session_id: &'life5 str,
    ) -> Pin<Box<dyn Future<Output = Result<AgentStepResult, String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: 'async_trait,
             'life5: 'async_trait;
}

Required Methods§

Source

fn resolve<'life0, 'life1, 'async_trait>( &'life0 self, name: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<Option<NamedAgentSpec>, String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

#563 seam. Unknown names must return Ok(None) and fail preflight.

Source

fn execute<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>( &'life0 self, spec: &'life1 NamedAgentSpec, prompt: Value, model: Option<&'life2 str>, effort: Option<&'life3 str>, capabilities: &'life4 BTreeSet<String>, session_id: &'life5 str, ) -> Pin<Box<dyn Future<Output = Result<AgentStepResult, String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait, 'life5: 'async_trait,

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§