UNPKG

@sap-ai-sdk/document-grounding

Version:

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

20 lines 525 B
/** * Representation of the 'KeyWordRetrievalScoringConfiguration' schema. */ export type KeyWordRetrievalScoringConfiguration = { /** * Enable dense retrieval. * Default: true. */ enabled?: boolean | null; /** * Contribution to final score. * Default: 1. */ weight?: number | null; /** * Extract Keywords from Query. */ extractKeyWordsFromQuery?: boolean | null; } & Record<string, any>; //# sourceMappingURL=key-word-retrieval-scoring-configuration.d.ts.map