effect-io-ai

Package: @effect/ai
Module: Response

Response.TextDeltaPart

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

Signature

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

Source

Since v1.0.0