Skip to content

LLMCallErrorEvent

Defined in: core/execution-events.ts:82

Emitted when an LLM call fails.

depth: number

Defined in: core/execution-events.ts:33

Nesting depth (0 = root, 1 = child, etc.)

BaseExecutionEvent.depth


error: Error

Defined in: core/execution-events.ts:85

The error that occurred


eventId: number

Defined in: core/execution-events.ts:25

Monotonically increasing event ID

BaseExecutionEvent.eventId


nodeId: string

Defined in: core/execution-events.ts:29

Node that emitted this event

BaseExecutionEvent.nodeId


parentId: string | null

Defined in: core/execution-events.ts:31

Parent node ID (null for root events)

BaseExecutionEvent.parentId


path: string[]

Defined in: core/execution-events.ts:35

Full path from root to this node

BaseExecutionEvent.path


recovered: boolean

Defined in: core/execution-events.ts:87

Whether the error was recovered by a controller


timestamp: number

Defined in: core/execution-events.ts:27

Event timestamp

BaseExecutionEvent.timestamp


type: "llm_call_error"

Defined in: core/execution-events.ts:83