UNPKG

@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 408 B
import type { FilterMatchModeEnum } from './filter-match-mode-enum.js'; /** * Representation of the 'RetrievalDocumentKeyValueListPair' schema. */ export type RetrievalDocumentKeyValueListPair = { /** * Max Length: 1024. */ key: string; value: string[]; matchMode?: FilterMatchModeEnum; } & Record<string, any>; //# sourceMappingURL=retrieval-document-key-value-list-pair.d.ts.map