Agent execution step

interface AgentStep {
    type: "agent";
    id: string;
    agentId: string;
    input: StepInput;
    output?: string;
    retry?: RetryPolicy;
    timeout?: number;
}

Properties

type: "agent"
id: string
agentId: string
input: StepInput
output?: string
retry?: RetryPolicy
timeout?: number