Interface HITLNotification

A notification sent to humans.

interface HITLNotification {
    type: "escalation" | "checkpoint" | "approval_required" | "clarification_needed" | "edit_requested";
    requestId: string;
    agentId: string;
    summary: string;
    urgency: "low" | "high" | "critical" | "medium";
    expiresAt?: Date;
    actionUrl?: string;
}

Properties

type: "escalation" | "checkpoint" | "approval_required" | "clarification_needed" | "edit_requested"

Notification type

requestId: string

Request ID

agentId: string

Agent ID

summary: string

Summary

urgency: "low" | "high" | "critical" | "medium"

Urgency

expiresAt?: Date

Expiration time

actionUrl?: string

Deep link to handle the request