@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
19 lines • 592 B
TypeScript
import type { ScopedKeyValueListPair } from './scoped-key-value-list-pair.js';
/**
* Representation of the 'BinaryBooleanFilter' schema.
*/
export type BinaryBooleanFilter = {
/**
* Boolean operator for combining filter conditions
*/
operator: 'and' | 'or';
/**
* Left operand of the boolean expression
*/
left: BinaryBooleanFilter | ScopedKeyValueListPair;
/**
* Right operand of the boolean expression
*/
right: BinaryBooleanFilter | ScopedKeyValueListPair;
} & Record<string, any>;
//# sourceMappingURL=binary-boolean-filter.d.ts.map