Skip to content

Commit 14dd1c5

Browse files
algolia-botmillotp
andcommitted
chore: remove dead links (generated)
algolia/api-clients-automation#5472 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 54a5278 commit 14dd1c5

19 files changed

+58
-59
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
1919
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
2020
<a href="https://github.com/algolia/algoliasearch-client-python/issues" target="_blank">Report a bug</a> •
21-
<a href="https://www.algolia.com/doc/api-client/troubleshooting/faq/python/" target="_blank">FAQ</a> •
2221
<a href="https://alg.li/support" target="_blank">Support</a>
2322
</p>
2423

@@ -84,7 +83,7 @@ For full documentation, visit the **[Algolia Python API Client](https://www.algo
8483

8584
## ❓ Troubleshooting
8685

87-
Encountering an issue? Before reaching out to support, we recommend heading to our [FAQ](https://www.algolia.com/doc/api-client/troubleshooting/faq/python/) where you will find answers for the most common issues and gotchas with the client. You can also open [a GitHub issue](https://github.com/algolia/api-clients-automation/issues/new?assignees=&labels=&projects=&template=Bug_report.md)
86+
Encountering an issue? Before reaching out to support, we recommend heading to our [FAQ](https://support.algolia.com/hc/sections/15061037630609-API-Client-FAQs) where you will find answers for the most common issues and gotchas with the client. You can also open [a GitHub issue](https://github.com/algolia/api-clients-automation/issues/new?assignees=&labels=&projects=&template=Bug_report.md)
8887

8988
## Contributing
9089

algoliasearch/composition/models/base_injection_query_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class BaseInjectionQueryParameters(BaseModel):
118118
attributes_to_snippet: Optional[List[str]] = None
119119
""" Attributes for which to enable snippets. Attribute names are case-sensitive Snippets provide additional context to matched words. If you enable snippets, they include 10 words, including the matched word. The matched word will also be wrapped by HTML tags for highlighting. You can adjust the number of words with the following notation: `ATTRIBUTE:NUMBER`, where `NUMBER` is the number of words to be extracted. """
120120
click_analytics: Optional[bool] = None
121-
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started). """
121+
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started). """
122122
decompound_query: Optional[bool] = None
123123
""" Whether to split compound words in the query into their building blocks For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words). Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding doesn't work for words with [non-spacing mark Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308). """
124124
disable_exact_on_attributes: Optional[List[str]] = None

algoliasearch/composition/models/exhaustive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Exhaustive(BaseModel):
3737
"""
3838

3939
facets_count: Optional[bool] = None
40-
""" Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related discussion](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-). """
40+
""" Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related discussion](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate). """
4141
facet_values: Optional[bool] = None
4242
""" The value is `false` if not all facet values are retrieved. """
4343
nb_hits: Optional[bool] = None

algoliasearch/composition/models/facet_hits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class FacetHits(BaseModel):
3939
highlighted: str
4040
""" Highlighted attribute value, including HTML tags. """
4141
count: int
42-
""" Number of records with this facet value. [The count may be approximated](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-). """
42+
""" Number of records with this facet value. [The count may be approximated](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate). """
4343

4444
model_config = ConfigDict(
4545
strict=False,

algoliasearch/composition/models/main_injection_query_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class MainInjectionQueryParameters(BaseModel):
124124
attributes_to_snippet: Optional[List[str]] = None
125125
""" Attributes for which to enable snippets. Attribute names are case-sensitive Snippets provide additional context to matched words. If you enable snippets, they include 10 words, including the matched word. The matched word will also be wrapped by HTML tags for highlighting. You can adjust the number of words with the following notation: `ATTRIBUTE:NUMBER`, where `NUMBER` is the number of words to be extracted. """
126126
click_analytics: Optional[bool] = None
127-
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started). """
127+
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started). """
128128
decompound_query: Optional[bool] = None
129129
""" Whether to split compound words in the query into their building blocks For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words). Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding doesn't work for words with [non-spacing mark Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won't be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308). """
130130
disable_exact_on_attributes: Optional[List[str]] = None

algoliasearch/composition/models/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class Params(BaseModel):
104104
user_token: Optional[str] = None
105105
""" Unique pseudonymous or anonymous user identifier. This helps with analytics and click and conversion events. For more information, see [user token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken). """
106106
click_analytics: Optional[bool] = None
107-
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started). """
107+
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started). """
108108
analytics: Optional[bool] = None
109109
""" Whether this search will be included in Analytics. """
110110
analytics_tags: Optional[List[str]] = None

algoliasearch/composition/models/search_for_facet_values_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class SearchForFacetValuesResults(BaseModel):
4141
facet_hits: List[FacetHits]
4242
""" Matching facet values. """
4343
exhaustive_facets_count: bool
44-
""" Whether the facet count is exhaustive (true) or approximate (false). For more information, see [Why are my facet and hit counts not accurate](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-). """
44+
""" Whether the facet count is exhaustive (true) or approximate (false). For more information, see [Why are my facet and hit counts not accurate](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate). """
4545
processing_time_ms: Optional[int] = None
4646
""" Time the server took to process the request, in milliseconds. """
4747

algoliasearch/recommend/models/exhaustive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Exhaustive(BaseModel):
3737
"""
3838

3939
facets_count: Optional[bool] = None
40-
""" Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related discussion](https://support.algolia.com/hc/en-us/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate-). """
40+
""" Whether the facet count is exhaustive (`true`) or approximate (`false`). See the [related discussion](https://support.algolia.com/hc/articles/4406975248145-Why-are-my-facet-and-hit-counts-not-accurate). """
4141
facet_values: Optional[bool] = None
4242
""" The value is `false` if not all facet values are retrieved. """
4343
nb_hits: Optional[bool] = None

algoliasearch/recommend/models/fallback_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class FallbackParams(BaseModel):
185185
synonyms: Optional[bool] = None
186186
""" Whether to take into account an index's synonyms for this search. """
187187
click_analytics: Optional[bool] = None
188-
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started). """
188+
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started). """
189189
analytics: Optional[bool] = None
190190
""" Whether this search will be included in Analytics. """
191191
analytics_tags: Optional[List[str]] = None

algoliasearch/recommend/models/recommend_search_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class RecommendSearchParams(BaseModel):
185185
synonyms: Optional[bool] = None
186186
""" Whether to take into account an index's synonyms for this search. """
187187
click_analytics: Optional[bool] = None
188-
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started). """
188+
""" Whether to include a `queryID` attribute in the response The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started). """
189189
analytics: Optional[bool] = None
190190
""" Whether this search will be included in Analytics. """
191191
analytics_tags: Optional[List[str]] = None

0 commit comments

Comments
 (0)