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

    Interface DocxReferenceModel

    Represents a reference to a part of a DOCX document.

    DocxReferenceModel

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

    DocxReferenceModel

    pages: number[]

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

    DocxReferenceModel

    type: string

    The type of reference. Always doc_x.

    DocxReferenceModel