Interface StartWorkflowOptions

interface StartWorkflowOptions {
    input: AgentOSInput;
    definition: WorkflowDefinition;
    workflowId?: string;
    conversationId?: string;
    createdByUserId?: string;
    context?: Record<string, unknown>;
    roleAssignments?: Record<string, string>;
    metadata?: Record<string, unknown>;
}

Properties

definition: WorkflowDefinition
workflowId?: string
conversationId?: string
createdByUserId?: string
context?: Record<string, unknown>
roleAssignments?: Record<string, string>
metadata?: Record<string, unknown>