@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 • 423 B
TypeScript
import type { DocumentKeyValueListPair } from './document-key-value-list-pair.js';
/**
* A single document stored in a collection by ID without exposing its chunks.
*/
export type DocumentWithoutChunks = {
metadata: DocumentKeyValueListPair[];
/**
* Unique identifier of a document.
* Format: "uuid".
*/
id: string;
} & Record<string, any>;
//# sourceMappingURL=document-without-chunks.d.ts.map