We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5df2fb commit 00ad924Copy full SHA for 00ad924
packages/client-search/src/types/SearchOptions.ts
@@ -349,4 +349,14 @@ export type SearchOptions = {
349
* less relevant results.
350
*/
351
readonly relevancyStrictness?: number;
352
+
353
+ /**
354
+ * Whether this search should use Dynamic Re-Ranking.
355
+ * @link https://www.algolia.com/doc/guides/algolia-ai/re-ranking/
356
+ *
357
+ * Note: You need to turn on Dynamic Re-Ranking on your index for it to have an effect on
358
+ * your search results. You can do this through the Re-Ranking page on the dashboard.
359
+ * This parameter is only used to turn off Dynamic Re-Ranking (with false) at search time.
360
+ */
361
+ readonly enableReRanking?: boolean;
362
};
0 commit comments