@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
16 lines • 418 B
TypeScript
/**
* Representation of the 'VectorDocumentKeyValueListPair' schema.
*/
export type VectorDocumentKeyValueListPair = {
/**
* Max Length: 1024.
*/
key: string;
value: string[];
/**
* Default match mode for search filters
* Default: "ANY".
*/
matchMode?: 'ANY' | 'ALL' | any | null;
} & Record<string, any>;
//# sourceMappingURL=vector-document-key-value-list-pair.d.ts.map