UNPKG

@sap-ai-sdk/document-grounding

Version:

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

17 lines 634 B
import type { RetrievalDataRepositorySearchResult } from './retrieval-data-repository-search-result.js'; /** * Representation of the 'RetrievalPerFilterSearchResult' schema. */ export type RetrievalPerFilterSearchResult = { filterId: string; /** * List of returned results. * Default: []. */ results?: RetrievalDataRepositorySearchResult[]; /** * Friendly Destination Name of remote instance (grounding.name). Only present if dataRepositoryType = remote:dg. */ remoteGroundingName?: string | null; } & Record<string, any>; //# sourceMappingURL=retrieval-per-filter-search-result.d.ts.map