Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void setId(@Nullable final String id) {
* instance.
*
* @param maxChunkCount Maximum number of chunks to be retained in final PerSearchFilterResult.
* Minimum: 0 Maximum: 10000000
* Minimum: 0 (exclusive) Maximum: 10000000
* @return The same instance of this {@link PostProcessingOperation} class
*/
@Nonnull
Expand All @@ -95,8 +95,8 @@ public PostProcessingOperation maxChunkCount(@Nullable final Integer maxChunkCou
}

/**
* Maximum number of chunks to be retained in final PerSearchFilterResult. minimum: 0 maximum:
* 10000000
* Maximum number of chunks to be retained in final PerSearchFilterResult. minimum: 0 (exclusive)
* maximum: 10000000
*
* @return maxChunkCount The maxChunkCount of this {@link PostProcessingOperation} instance.
*/
Expand All @@ -109,7 +109,7 @@ public Integer getMaxChunkCount() {
* Set the maxChunkCount of this {@link PostProcessingOperation} instance.
*
* @param maxChunkCount Maximum number of chunks to be retained in final PerSearchFilterResult.
* Minimum: 0 Maximum: 10000000
* Minimum: 0 (exclusive) Maximum: 10000000
*/
public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
this.maxChunkCount = maxChunkCount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected RetrievalSearchConfiguration() {}
* instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0 Maximum: 10000000
* 'maxDocumentCount'. Minimum: 0 (exclusive) Maximum: 10000000
* @return The same instance of this {@link RetrievalSearchConfiguration} class
*/
@Nonnull
Expand All @@ -56,7 +56,7 @@ public RetrievalSearchConfiguration maxChunkCount(@Nullable final Integer maxChu

/**
* Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'.
* minimum: 0 maximum: 10000000
* minimum: 0 (exclusive) maximum: 10000000
*
* @return maxChunkCount The maxChunkCount of this {@link RetrievalSearchConfiguration} instance.
*/
Expand All @@ -69,7 +69,7 @@ public Integer getMaxChunkCount() {
* Set the maxChunkCount of this {@link RetrievalSearchConfiguration} instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0 Maximum: 10000000
* 'maxDocumentCount'. Minimum: 0 (exclusive) Maximum: 10000000
*/
public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
this.maxChunkCount = maxChunkCount;
Expand All @@ -81,7 +81,8 @@ public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
*
* @param maxDocumentCount [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. Minimum: 0 Maximum: 10000000
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive) Maximum:
* 10000000
* @return The same instance of this {@link RetrievalSearchConfiguration} class
*/
@Nonnull
Expand All @@ -93,7 +94,7 @@ public RetrievalSearchConfiguration maxDocumentCount(@Nullable final Integer max
/**
* [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. minimum: 0 maximum: 10000000
* one chunk per document is returned. minimum: 0 (exclusive) maximum: 10000000
*
* @return maxDocumentCount The maxDocumentCount of this {@link RetrievalSearchConfiguration}
* instance.
Expand All @@ -108,7 +109,8 @@ public Integer getMaxDocumentCount() {
*
* @param maxDocumentCount [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. Minimum: 0 Maximum: 10000000
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive) Maximum:
* 10000000
*/
public void setMaxDocumentCount(@Nullable final Integer maxDocumentCount) {
this.maxDocumentCount = maxDocumentCount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void setId(@Nullable final String id) {
* return the same instance.
*
* @param maxChunkCount Maximum number of chunks to be retained in final PerSearchFilterResult.
* Minimum: 0 Maximum: 10000000
* Minimum: 0 (exclusive) Maximum: 10000000
* @return The same instance of this {@link RetrievalSearchInputPostProcessingInner} class
*/
@Nonnull
Expand All @@ -97,8 +97,8 @@ public RetrievalSearchInputPostProcessingInner maxChunkCount(
}

/**
* Maximum number of chunks to be retained in final PerSearchFilterResult. minimum: 0 maximum:
* 10000000
* Maximum number of chunks to be retained in final PerSearchFilterResult. minimum: 0 (exclusive)
* maximum: 10000000
*
* @return maxChunkCount The maxChunkCount of this {@link RetrievalSearchInputPostProcessingInner}
* instance.
Expand All @@ -112,7 +112,7 @@ public Integer getMaxChunkCount() {
* Set the maxChunkCount of this {@link RetrievalSearchInputPostProcessingInner} instance.
*
* @param maxChunkCount Maximum number of chunks to be retained in final PerSearchFilterResult.
* Minimum: 0 Maximum: 10000000
* Minimum: 0 (exclusive) Maximum: 10000000
*/
public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
this.maxChunkCount = maxChunkCount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected SearchConfiguration() {}
* instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0 Maximum: 0
* 'maxDocumentCount'. Minimum: 0 (exclusive) Maximum: 0
* @return The same instance of this {@link SearchConfiguration} class
*/
@Nonnull
Expand All @@ -56,7 +56,7 @@ public SearchConfiguration maxChunkCount(@Nullable final Integer maxChunkCount)

/**
* Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'.
* minimum: 0 maximum: 0
* minimum: 0 (exclusive) maximum: 0
*
* @return maxChunkCount The maxChunkCount of this {@link SearchConfiguration} instance.
*/
Expand All @@ -69,7 +69,7 @@ public Integer getMaxChunkCount() {
* Set the maxChunkCount of this {@link SearchConfiguration} instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0 Maximum: 0
* 'maxDocumentCount'. Minimum: 0 (exclusive) Maximum: 0
*/
public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
this.maxChunkCount = maxChunkCount;
Expand All @@ -81,7 +81,7 @@ public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
*
* @param maxDocumentCount [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. Minimum: 0 Maximum: 0
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive) Maximum: 0
* @return The same instance of this {@link SearchConfiguration} class
*/
@Nonnull
Expand All @@ -93,7 +93,7 @@ public SearchConfiguration maxDocumentCount(@Nullable final Integer maxDocumentC
/**
* [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. minimum: 0 maximum: 0
* one chunk per document is returned. minimum: 0 (exclusive) maximum: 0
*
* @return maxDocumentCount The maxDocumentCount of this {@link SearchConfiguration} instance.
*/
Expand All @@ -107,7 +107,7 @@ public Integer getMaxDocumentCount() {
*
* @param maxDocumentCount [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. Minimum: 0 Maximum: 0
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive) Maximum: 0
*/
public void setMaxDocumentCount(@Nullable final Integer maxDocumentCount) {
this.maxDocumentCount = maxDocumentCount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected VectorSearchConfiguration() {}
* instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0 Maximum: 10000000
* 'maxDocumentCount'. Minimum: 0 (exclusive) Maximum: 10000000
* @return The same instance of this {@link VectorSearchConfiguration} class
*/
@Nonnull
Expand All @@ -56,7 +56,7 @@ public VectorSearchConfiguration maxChunkCount(@Nullable final Integer maxChunkC

/**
* Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'.
* minimum: 0 maximum: 10000000
* minimum: 0 (exclusive) maximum: 10000000
*
* @return maxChunkCount The maxChunkCount of this {@link VectorSearchConfiguration} instance.
*/
Expand All @@ -69,7 +69,7 @@ public Integer getMaxChunkCount() {
* Set the maxChunkCount of this {@link VectorSearchConfiguration} instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0 Maximum: 10000000
* 'maxDocumentCount'. Minimum: 0 (exclusive) Maximum: 10000000
*/
public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
this.maxChunkCount = maxChunkCount;
Expand All @@ -81,7 +81,8 @@ public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
*
* @param maxDocumentCount [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. Minimum: 0 Maximum: 10000000
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive) Maximum:
* 10000000
* @return The same instance of this {@link VectorSearchConfiguration} class
*/
@Nonnull
Expand All @@ -93,7 +94,7 @@ public VectorSearchConfiguration maxDocumentCount(@Nullable final Integer maxDoc
/**
* [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. minimum: 0 maximum: 10000000
* one chunk per document is returned. minimum: 0 (exclusive) maximum: 10000000
*
* @return maxDocumentCount The maxDocumentCount of this {@link VectorSearchConfiguration}
* instance.
Expand All @@ -108,7 +109,8 @@ public Integer getMaxDocumentCount() {
*
* @param maxDocumentCount [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. Minimum: 0 Maximum: 10000000
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive) Maximum:
* 10000000
*/
public void setMaxDocumentCount(@Nullable final Integer maxDocumentCount) {
this.maxDocumentCount = maxDocumentCount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected GroundingFilterSearchConfiguration() {}
* the same instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0
* 'maxDocumentCount'. Minimum: 0 (exclusive)
* @return The same instance of this {@link GroundingFilterSearchConfiguration} class
*/
@Nonnull
Expand All @@ -56,7 +56,7 @@ public GroundingFilterSearchConfiguration maxChunkCount(@Nullable final Integer

/**
* Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'.
* minimum: 0
* minimum: 0 (exclusive)
*
* @return maxChunkCount The maxChunkCount of this {@link GroundingFilterSearchConfiguration}
* instance.
Expand All @@ -70,7 +70,7 @@ public Integer getMaxChunkCount() {
* Set the maxChunkCount of this {@link GroundingFilterSearchConfiguration} instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0
* 'maxDocumentCount'. Minimum: 0 (exclusive)
*/
public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
this.maxChunkCount = maxChunkCount;
Expand All @@ -82,7 +82,7 @@ public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
*
* @param maxDocumentCount [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. Minimum: 0
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive)
* @return The same instance of this {@link GroundingFilterSearchConfiguration} class
*/
@Nonnull
Expand All @@ -95,7 +95,7 @@ public GroundingFilterSearchConfiguration maxDocumentCount(
/**
* [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. minimum: 0
* one chunk per document is returned. minimum: 0 (exclusive)
*
* @return maxDocumentCount The maxDocumentCount of this {@link
* GroundingFilterSearchConfiguration} instance.
Expand All @@ -110,7 +110,7 @@ public Integer getMaxDocumentCount() {
*
* @param maxDocumentCount [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. Minimum: 0
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive)
*/
public void setMaxDocumentCount(@Nullable final Integer maxDocumentCount) {
this.maxDocumentCount = maxDocumentCount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected GroundingFilterSearchConfiguration() {}
* the same instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0
* 'maxDocumentCount'. Minimum: 0 (exclusive)
* @return The same instance of this {@link GroundingFilterSearchConfiguration} class
*/
@Nonnull
Expand All @@ -56,7 +56,7 @@ public GroundingFilterSearchConfiguration maxChunkCount(@Nullable final Integer

/**
* Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'.
* minimum: 0
* minimum: 0 (exclusive)
*
* @return maxChunkCount The maxChunkCount of this {@link GroundingFilterSearchConfiguration}
* instance.
Expand All @@ -70,7 +70,7 @@ public Integer getMaxChunkCount() {
* Set the maxChunkCount of this {@link GroundingFilterSearchConfiguration} instance.
*
* @param maxChunkCount Maximum number of chunks to be returned. Cannot be used with
* 'maxDocumentCount'. Minimum: 0
* 'maxDocumentCount'. Minimum: 0 (exclusive)
*/
public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
this.maxChunkCount = maxChunkCount;
Expand All @@ -82,7 +82,7 @@ public void setMaxChunkCount(@Nullable final Integer maxChunkCount) {
*
* @param maxDocumentCount [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. Minimum: 0
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive)
* @return The same instance of this {@link GroundingFilterSearchConfiguration} class
*/
@Nonnull
Expand All @@ -95,7 +95,7 @@ public GroundingFilterSearchConfiguration maxDocumentCount(
/**
* [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. minimum: 0
* one chunk per document is returned. minimum: 0 (exclusive)
*
* @return maxDocumentCount The maxDocumentCount of this {@link
* GroundingFilterSearchConfiguration} instance.
Expand All @@ -110,7 +110,7 @@ public Integer getMaxDocumentCount() {
*
* @param maxDocumentCount [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. Minimum: 0
* is given, then only one chunk per document is returned. Minimum: 0 (exclusive)
*/
public void setMaxDocumentCount(@Nullable final Integer maxDocumentCount) {
this.maxDocumentCount = maxDocumentCount;
Expand Down
Loading