Package: @effect/ai
Module: Response
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
}
Since v1.0.0