Interface TextReferenceModel

Represents a reference to a part of a text document.

TextReferenceModel

interface TextReferenceModel {
    file: AssistantFileModel;
    type: string;
}

Properties

Properties

TextReferenceModel

type: string

The type of reference. Always "text".

TextReferenceModel