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 418 B
import type { VectorKeyValueListPair } from './vector-key-value-list-pair.js'; /** * Schema for a text-only chunk. */ export type TextOnlyBaseChunk = { content: string; /** * Default: []. */ metadata?: VectorKeyValueListPair[]; /** * Unique identifier of a chuk. * Format: "uuid". */ id: string; } & Record<string, any>; //# sourceMappingURL=text-only-base-chunk.d.ts.map