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 524 B
import type { RetrievalKeyValueListPair } from './retrieval-key-value-list-pair.js'; import type { SearchScores } from './search-scores.js'; import type { Score } from './score.js'; /** * Representation of the 'RetrievalChunk' schema. */ export type RetrievalChunk = { id: string; content: string; /** * Default: []. */ metadata?: RetrievalKeyValueListPair[]; searchScores?: SearchScores; postProcessingScore?: Score; } & Record<string, any>; //# sourceMappingURL=retrieval-chunk.d.ts.map