Skip to main content

Type Alias: EscalationDecision

EscalationDecision = { instructions?: string; type: "human_takeover"; } | { adjustedParameters?: Record<string, unknown>; guidance: string; type: "agent_continue"; } | { reason: string; type: "abort"; } | { instructions: string; targetAgentId: string; type: "delegate"; }

Defined in: packages/agentos/src/core/hitl/IHumanInteractionManager.ts:258

Human response to escalation.