@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 • 320 B
TypeScript
import type { DocumentInput } from './document-input.js';
/**
* An update request containing one or more documents to update existing documents in a collection by ID.
*/
export type DocumentUpdateRequest = {
documents: DocumentInput[];
} & Record<string, any>;
//# sourceMappingURL=document-update-request.d.ts.map