UNPKG

@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 305 B
import type { KeyValueListPair } from './key-value-list-pair.js'; /** * Representation of the 'Chunk' schema. */ export type Chunk = { id: string; content: string; /** * Default: []. */ metadata?: KeyValueListPair[]; } & Record<string, any>; //# sourceMappingURL=chunk.d.ts.map