@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
13 lines • 399 B
TypeScript
import type { FilterMatchModeEnum } from './filter-match-mode-enum.js';
/**
* Representation of the 'VectorDocumentKeyValueListPair' schema.
*/
export type VectorDocumentKeyValueListPair = {
/**
* Max Length: 1024.
*/
key: string;
value: string[];
matchMode?: FilterMatchModeEnum;
} & Record<string, any>;
//# sourceMappingURL=vector-document-key-value-list-pair.d.ts.map