The refusal content that is part of a message.

interface RefusalDeltaBlock {
    index: number;
    type: "refusal";
    refusal?: string;
}

Properties

Properties

index: number

The index of the refusal part in the message.

type: "refusal"

Always refusal.

refusal?: string