Human-in-the-loop step

interface HumanInTheLoopStep {
    type: "human_in_the_loop";
    id: string;
    prompt: string;
    timeout: number;
    assignee?: string;
    options?: string[];
    output?: string;
}

Properties

type: "human_in_the_loop"
id: string
prompt: string
timeout: number
assignee?: string
options?: string[]
output?: string