mindee
Version:
Mindee Client Library for Node.js
10 lines (9 loc) • 312 B
TypeScript
import { ExtraField } from "./extras";
import { StringDict } from "../stringDict";
export declare class RAGExtra extends ExtraField {
/**
* ID reference of the document matched by the Retrieval-Augmented Generation.
*/
matchingDocumentId?: string;
constructor(rawPrediction: StringDict);
}