UNPKG

@sap-ai-sdk/document-grounding

Version:

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

11 lines 357 B
import type { VectorPerFilterSearchResult } from './vector-per-filter-search-result.js'; /** * Representation of the 'VectorSearchResults' schema. */ export type VectorSearchResults = { /** * List of returned results. */ results: VectorPerFilterSearchResult[]; } & Record<string, any>; //# sourceMappingURL=vector-search-results.d.ts.map