UNPKG

@sap-ai-sdk/document-grounding

Version:

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

17 lines 682 B
/** * Representation of the 'RetrievalSearchConfiguration' schema. * Default: {}. */ export type RetrievalSearchConfiguration = ({ /** * Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'. * Maximum: 10000000. */ maxChunkCount?: number | null; /** * [Only supports 'vector' dataRepositoryType] - Maximum number of documents to be returned. Cannot be used with 'maxChunkCount'. If maxDocumentCount is given, then only one chunk per document is returned. * Maximum: 10000000. */ maxDocumentCount?: number | null; } & Record<string, any>) | null; //# sourceMappingURL=retrieval-search-configuration.d.ts.map