@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
13 lines • 361 B
TypeScript
import type { RetrievalKeyValueListPair } from './retrieval-key-value-list-pair.js';
/**
* Representation of the 'RetrievalChunk' schema.
*/
export type RetrievalChunk = {
id: string;
content: string;
/**
* Default: [].
*/
metadata?: RetrievalKeyValueListPair[];
} & Record<string, any>;
//# sourceMappingURL=retrieval-chunk.d.ts.map