Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Interface CitationModel

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

    CitationModel

    interface CitationModel {
        position?: number;
        references?: ReferenceModel[];
    }
    Index
    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