@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
10 lines • 412 B
TypeScript
import type { TextOnlyBaseChunk } from './text-only-base-chunk.js';
import type { VectorDocumentKeyValueListPair } from './vector-document-key-value-list-pair.js';
/**
* Base class for documents, document requests and responses.
*/
export type BaseDocument = {
chunks: TextOnlyBaseChunk[];
metadata: VectorDocumentKeyValueListPair[];
} & Record<string, any>;
//# sourceMappingURL=base-document.d.ts.map