effect-io-ai

Package: @effect/ai
Module: Response

Response.ReasoningDeltaPart

Response part containing incremental reasoning content to be added to the existing chunk of reasoning text with the same unique identifier.

Signature

export interface ReasoningDeltaPart extends BasePart<"reasoning-delta", ReasoningDeltaPartMetadata> {
  /**
   * Unique identifier matching the corresponding reasoning chunk.
   */
  readonly id: string
  /**
   * The incremental reasoning content to add.
   */
  readonly delta: string
}

Source

Since v1.0.0