UNPKG

@sap-ai-sdk/document-grounding

Version:

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

15 lines 525 B
import type { EmbeddingConfig } from './embedding-config.js'; import type { KeyValueListPair } from './key-value-list-pair.js'; /** * A request for creating a new, single collection. */ export type CollectionRequest = { title?: string | null; embeddingConfig: EmbeddingConfig; /** * Metadata attached to collection. Useful to restrict search to a subset of collections. * Default: []. */ metadata?: KeyValueListPair[]; } & Record<string, any>; //# sourceMappingURL=collection-request.d.ts.map