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