UNPKG

@sap-ai-sdk/document-grounding

Version:

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

14 lines 408 B
import type { DocumentKeyValueListPair } from './document-key-value-list-pair.js'; import type { Chunk } from './chunk.js'; /** * Representation of the 'RetrievalDocument' schema. */ export type RetrievalDocument = { id: string; /** * Default: []. */ metadata?: DocumentKeyValueListPair[]; chunks: Chunk[]; } & Record<string, any>; //# sourceMappingURL=retrieval-document.d.ts.map