UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

8 lines 305 B
import type { BaseDocument } from './base-document.js'; /** * A create request containing one or more new documents to create and store in a collection. */ export type DocumentCreateRequest = { documents: BaseDocument[]; } & Record<string, any>; //# sourceMappingURL=document-create-request.d.ts.map