Type Alias: AgentWorkflowStep
Makaio Framework / contracts / AgentWorkflowStep
Type Alias: AgentWorkflowStep
Section titled “Type Alias: AgentWorkflowStep”AgentWorkflowStep =
z.infer<typeofAgentWorkflowStepSchema>
Defined in: ../../../packages/contracts/src/workflow/schemas.ts:191
Type Composition
Section titled “Type Composition”AgentWorkflowStepz.infer<typeof AgentWorkflowStepSchema>typeof AgentWorkflowStepSchema
Resolved Shape
Section titled “Resolved Shape”type AgentWorkflowStep = { id: string; type: 'agent'; prompt: string; needs?: Array<string> | undefined; if?: string | undefined; adapter?: string | undefined; model?: string | undefined; executionTargetId?: string | undefined; onComplete?: { extract?: 'none' | 'summary' | undefined; } | undefined; outputSchema?: Record<string, unknown> | undefined;};