interface Document {
    id?: string;
    name?: string;
    score?: number;
    text?: string;
}

Properties

Properties

id?: string

Document ID

name?: string

Document name

score?: number

Score of the document retrieval as a source of ground truth

text?: string

Document text

Generated using TypeDoc