Skip to content

Type Alias: AgentWorkflowStep

Makaio Framework


Makaio Framework / contracts / AgentWorkflowStep

AgentWorkflowStep = z.infer<typeof AgentWorkflowStepSchema>

Defined in: ../../../packages/contracts/src/workflow/schemas.ts:191

  • AgentWorkflowStep
    • z.infer<typeof AgentWorkflowStepSchema>
      • typeof AgentWorkflowStepSchema
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;
};