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

    Interface PdfReferenceModel

    Represents a reference to a part of a PDF document.

    PdfReferenceModel

    interface PdfReferenceModel {
        file: AssistantFileModel;
        pages: number[];
        type: string;
    }
    Index

    PdfReferenceModel

    pages: number[]

    A list of page numbers in the PDF document that are relevant to the query.

    PdfReferenceModel

    type: string

    The type of reference. Always pdf.

    PdfReferenceModel