Represents a request for human action within the graph execution. Contains the action type and any associated arguments needed for the action.

interface ActionRequest {
    action: string;
    args: Record<string, any>;
}

Properties

Properties

action: string

The type or name of action being requested (e.g., "Approve XYZ action")

args: Record<string, any>

Key-value pairs of arguments needed for the action