UNPKG

@sap-ai-sdk/document-grounding

Version:

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

22 lines 720 B
import type { RetrievalKeyValueListPair } from './retrieval-key-value-list-pair.js'; import type { DataRepositoryType } from './data-repository-type.js'; /** * DataRepository schema expected by Retrieval. */ export type DataRepository = { /** * Unique identifier of this DataRepository. * Format: "uuid". */ id: string; title: string; /** * Metadata attached to DataRepository. Useful to later limit search to a subset of DataRepositories. * Default: []. */ metadata?: RetrievalKeyValueListPair[]; remoteGroundingName?: string | null; message?: string | null; type: DataRepositoryType; } & Record<string, any>; //# sourceMappingURL=data-repository.d.ts.map