UNPKG

@sap-ai-sdk/document-grounding

Version:

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

8 lines 498 B
import type { MergeStrategyType } from './merge-strategy-type.js'; /** * The MergeStrategyScoreReuse merges the given PerFilterSearchResult instances according to the scores returned by the downstream retrieval process. It is important that the scores are comparable, meaning they should come from the same embedding model or reranker model. */ export type MergeStrategyScoreReuse = { type?: MergeStrategyType; } & Record<string, any>; //# sourceMappingURL=merge-strategy-score-reuse.d.ts.map