interface ChatCompletionDeleted {
    deleted: boolean;
    id: string;
    object: "chat.completion.deleted";
}

Properties

deleted: boolean

Whether the chat completion was deleted.

id: string

The ID of the chat completion that was deleted.

object: "chat.completion.deleted"

The type of object being deleted.

""