@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 • 461 B
TypeScript
import type { VectorKeyValueListPair } from './vector-key-value-list-pair.js';
/**
* Representation of the 'MetadataItem' schema.
*/
export type MetadataItem = {
/**
* ID of collection
* Format: "uuid".
*/
id: string;
/**
* List of metadata of the collections or documents or chunks
* Default: [].
*/
metadata?: VectorKeyValueListPair[] | null;
} & Record<string, any>;
//# sourceMappingURL=metadata-item.d.ts.map