UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

10 lines 478 B
import type { RetrievalScopedKeyValueListPair } from './retrieval-scoped-key-value-list-pair.js'; /** * Representation of the 'RetrievalBinaryBooleanFilter' schema. */ export type RetrievalBinaryBooleanFilter = { operator: 'and' | 'or'; left: RetrievalBinaryBooleanFilter | RetrievalScopedKeyValueListPair; right: RetrievalBinaryBooleanFilter | RetrievalScopedKeyValueListPair; } & Record<string, any>; //# sourceMappingURL=retrieval-binary-boolean-filter.d.ts.map