You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(types): add missing search parameters to document types
- Add `validate_field_names` to `QueryParameters`
- Add `enable_synonyms`, `filter_curated_hits`, `synonym_prefix` to `RankingAndSortingParameters`
- Add `facet_strategy` with literal type options to `FacetingParameters`
- Add `enable_typos_for_alpha_numerical_tokens` and `synonym_num_typos` to `TypoToleranceParameters`
@@ -393,6 +397,9 @@ class RankingAndSortingParameters(typing.TypedDict):
393
397
enable_overrides (bool): Enable overrides.
394
398
override_tags (str, list[str]): Tags to override.
395
399
max_candidates (int): Maximum number of candidates to return.
400
+
enable_synonyms (bool): If you have some synonyms defined but want to disable all of them for a particular search query, set `enable_synonyms` to `false`.
401
+
filter_curated_hits (bool): Whether the `filter_by` condition of the search query should be applicable to curated results (override definitions, pinned hits, hidden hits, etc.
402
+
synonym_prefix (bool): Allow synonym resolution on word prefixes in the query.
0 commit comments