Represents a message delta i.e. any changed fields on a message during streaming.

interface MessageDeltaEvent {
    delta: MessageDelta;
    id: string;
    object: "thread.message.delta";
}

Properties

Properties

The delta containing the fields that have changed on the Message.

id: string

The identifier of the message, which can be referenced in API endpoints.

object: "thread.message.delta"

The object type, which is always thread.message.delta.