Describes a single citation included in a chat response, pointing to one or more referenced sources.

CitationModel

interface CitationModel {
    position?: number;
    references?: ReferenceModel[];
}

Properties

position?: number

The index position of the citation in the complete text response.

CitationModel

references?: ReferenceModel[]

A list of file references that this citation points to.

CitationModel