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 319 B
import type { PerFilterSearchResult } from './per-filter-search-result.js'; /** * Representation of the 'SearchResults' schema. */ export type SearchResults = { /** * List of returned results. */ results: PerFilterSearchResult[]; } & Record<string, any>; //# sourceMappingURL=search-results.d.ts.map