@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 • 465 B
TypeScript
import type { SearchSelectOptionEnum } from './search-select-option-enum.js';
/**
* Representation of the 'SearchDocumentKeyValueListPair' schema.
*/
export type SearchDocumentKeyValueListPair = {
/**
* Max Length: 1024.
*/
key: string;
value: string[];
/**
* Select mode for search filters
*/
selectMode?: SearchSelectOptionEnum[];
} & Record<string, any>;
//# sourceMappingURL=search-document-key-value-list-pair.d.ts.map