Detailed documentation for building, understanding, and leveraging Agentic Workflows and Services-as-Software on the .do platform. Explore API specifications, data models, and interaction patterns.
interface AgentStepOutput {
status: 'success' | 'failure';
output: any; // The output of the agent step can be anything
agentId: string; // The ID of the agent that executed this step
}
interface AgentWorkflowOutput {
status: 'completed' | 'failed';
steps: AgentStepOutput[];
finalOutput: any; // The final output of the entire workflow
}