UNPKG

@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 375 B
import type { VectorSearchFilter } from './vector-search-filter.js'; /** * Representation of the 'TextSearchRequest' schema. */ export type TextSearchRequest = { /** * Query string * Max Length: 2000. * Min Length: 1. */ query: string; filters: VectorSearchFilter[]; } & Record<string, any>; //# sourceMappingURL=text-search-request.d.ts.map