Interface DocxReferenceModel

Represents a reference to a part of a DOCX document.

DocxReferenceModel

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

Properties

Properties

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