@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
14 lines • 356 B
TypeScript
import type { SearchFilter } from './search-filter.js';
/**
* Representation of the 'TextSearchRequest' schema.
*/
export type TextSearchRequest = {
/**
* Query string
* Max Length: 2000.
* Min Length: 1.
*/
query: string;
filters: SearchFilter[];
} & Record<string, any>;
//# sourceMappingURL=text-search-request.d.ts.map