UNPKG

@sap-ai-sdk/document-grounding

Version:

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

18 lines 463 B
import type { KeyValueListPair } from './key-value-list-pair.js'; import type { DocumentOutput } from './document-output.js'; /** * Representation of the 'DocumentsChunk' schema. */ export type DocumentsChunk = { /** * Format: "uuid". */ id: string; title: string; /** * Default: []. */ metadata?: KeyValueListPair[]; documents: DocumentOutput[]; } & Record<string, any>; //# sourceMappingURL=documents-chunk.d.ts.map