@@ -144,7 +144,7 @@ public Params setGetRankingInfo(Boolean getRankingInfo) {
144
144
return this ;
145
145
}
146
146
147
- /** Whether the search response should include detailed ranking information. */
147
+ /** Whether the run response should include detailed ranking information. */
148
148
@ javax .annotation .Nullable
149
149
public Boolean getGetRankingInfo () {
150
150
return getRankingInfo ;
@@ -320,11 +320,11 @@ public Params addQueryLanguages(SupportedLanguage queryLanguagesItem) {
320
320
321
321
/**
322
322
* Languages for language-specific query processing steps such as plurals, stop-word removal, and
323
- * word-detection dictionaries. This setting sets a default list of languages used by the
323
+ * word-detection dictionaries This setting sets a default list of languages used by the
324
324
* `removeStopWords` and `ignorePlurals` settings. This setting also sets a dictionary for word
325
325
* detection in the logogram-based
326
326
* [CJK](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/#normalization-for-logogram-based-languages-cjk)
327
- * languages. To support this, you must place the CJK language **first**. **You should always
327
+ * languages. To support this, you must place the CJK language **first** **You should always
328
328
* specify a query language.** If you don't specify an indexing language, the search engine uses
329
329
* all [supported
330
330
* languages](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/supported-languages/),
@@ -352,7 +352,7 @@ public Params addNaturalLanguages(SupportedLanguage naturalLanguagesItem) {
352
352
353
353
/**
354
354
* ISO language codes that adjust settings that are useful for processing natural language queries
355
- * (as opposed to keyword searches): - Sets `removeStopWords` and `ignorePlurals` to the list of
355
+ * (as opposed to keyword searches) - Sets `removeStopWords` and `ignorePlurals` to the list of
356
356
* provided languages. - Sets `removeWordsIfNoResults` to `allOptional`. - Adds a
357
357
* `natural_language` attribute to `ruleContexts` and `analyticsTags`.
358
358
*/
@@ -366,7 +366,7 @@ public Params setEnableRules(Boolean enableRules) {
366
366
return this ;
367
367
}
368
368
369
- /** Whether to enable rules. */
369
+ /** Whether to enable composition rules. */
370
370
@ javax .annotation .Nullable
371
371
public Boolean getEnableRules () {
372
372
return enableRules ;
@@ -386,7 +386,7 @@ public Params addRuleContexts(String ruleContextsItem) {
386
386
}
387
387
388
388
/**
389
- * Assigns a rule context to the search query. [Rule
389
+ * Assigns a rule context to the run query [Rule
390
390
* contexts](https://www.algolia.com/doc/guides/managing-results/rules/rules-overview/how-to/customize-search-results-by-platform/#whats-a-context)
391
391
* are strings that you can use to trigger matching rules.
392
392
*/
@@ -416,7 +416,7 @@ public Params setClickAnalytics(Boolean clickAnalytics) {
416
416
}
417
417
418
418
/**
419
- * Whether to include a `queryID` attribute in the response. The query ID is a unique identifier
419
+ * Whether to include a `queryID` attribute in the response The query ID is a unique identifier
420
420
* for a search query and is required for tracking [click and conversion
421
421
* events](https://www.algolia.com/guides/sending-events/getting-started/).
422
422
*/
@@ -463,7 +463,10 @@ public Params setEnableABTest(Boolean enableABTest) {
463
463
return this ;
464
464
}
465
465
466
- /** Whether to enable A/B testing for this search. */
466
+ /**
467
+ * Whether to enable index level A/B testing for this run request. If the composition mixes
468
+ * multiple indices, the A/B test is ignored.
469
+ */
467
470
@ javax .annotation .Nullable
468
471
public Boolean getEnableABTest () {
469
472
return enableABTest ;
@@ -476,8 +479,8 @@ public Params setEnableReRanking(Boolean enableReRanking) {
476
479
477
480
/**
478
481
* Whether this search will use [Dynamic
479
- * Re-Ranking](https://www.algolia.com/doc/guides/algolia-ai/re-ranking/). This setting only has
480
- * an effect if you activated Dynamic Re-Ranking for this index in the Algolia dashboard.
482
+ * Re-Ranking](https://www.algolia.com/doc/guides/algolia-ai/re-ranking/) This setting only has an
483
+ * effect if you activated Dynamic Re-Ranking for this index in the Algolia dashboard.
481
484
*/
482
485
@ javax .annotation .Nullable
483
486
public Boolean getEnableReRanking () {
0 commit comments