mindee
Version:
Mindee Client Library for Node.js
14 lines (13 loc) • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RAGExtra = void 0;
const extras_1 = require("./extras");
class RAGExtra extends extras_1.ExtraField {
constructor(rawPrediction) {
super();
if (rawPrediction["matching_document_id"]) {
this.matchingDocumentId = rawPrediction["matching_document_id"];
}
}
}
exports.RAGExtra = RAGExtra;