Interface RagChunkPageSpan

Represents where the chunk starts and ends in the document.

interface RagChunkPageSpan {
    firstPage?: number;
    lastPage?: number;
}

Properties

firstPage?: number

Page where chunk starts in the document. Inclusive. 1-indexed.

lastPage?: number

Page where chunk ends in the document. Inclusive. 1-indexed.