effect-io-ai

Package: effect
Module: ExecutionPlan

ExecutionPlan.Metadata

Metadata describing the currently running execution-plan attempt.

Details

attempt is the current 1-based attempt number, and stepIndex is the 0-based index of the plan step currently being evaluated.

Signature

export interface Metadata {
  readonly attempt: number
  readonly stepIndex: number
}

Source

Since v4.0.0