effect-io-ai

Package: @effect/ai
Module: Response

Response.TextStartPart

Response part indicating the start of streaming text content.

Marks the beginning of a text chunk with a unique identifier.

Signature

export interface TextStartPart extends BasePart<"text-start", TextStartPartMetadata> {
  /**
   * Unique identifier for this text chunk.
   */
  readonly id: string
}

Source

Since v1.0.0