SAP AI SDK for JavaScript - v2.9.0
    Preparing search index...

    Type Alias RetrievalSearchConfiguration

    RetrievalSearchConfiguration:
        | { maxChunkCount?: number
        | null; maxDocumentCount?: number | null } & Record<string, any>
        | null

    Representation of the 'RetrievalSearchConfiguration' schema. Default: {}.

    Type Declaration

    • { maxChunkCount?: number | null; maxDocumentCount?: number | null } & Record<
          string,
          any,
      >
      • OptionalmaxChunkCount?: number | null

        Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'. Maximum: 10000000.

      • OptionalmaxDocumentCount?: 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.

        Copyright Ⓒ 2026 SAP SE or an SAP affiliate company. All rights reserved.

    • null