Skip to content

Commit 8a576e4

Browse files
committed
Fix doc links
1 parent 59c8b0d commit 8a576e4

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

integrations/amazon_bedrock/src/haystack_integrations/components/generators/amazon_bedrock/chat/chat_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def weather(city: str):
140140
automatically from the environment or the AWS configuration file.
141141
If the AWS environment is not configured, set `aws_access_key_id`, `aws_secret_access_key`,
142142
and `aws_region_name` as environment variables or pass them as
143-
[Secret](https://docs.haystack.deepset.ai/v2.0/docs/secret-management) arguments. Make sure the region you set
143+
[Secret](https://docs.haystack.deepset.ai/docs/secret-management) arguments. Make sure the region you set
144144
supports Amazon Bedrock.
145145
"""
146146

integrations/amazon_bedrock/src/haystack_integrations/components/generators/amazon_bedrock/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class AmazonBedrockGenerator:
5858
automatically from the environment or the AWS configuration file.
5959
If the AWS environment is not configured, set `aws_access_key_id`, `aws_secret_access_key`,
6060
`aws_session_token`, and `aws_region_name` as environment variables or pass them as
61-
[Secret](https://docs.haystack.deepset.ai/v2.0/docs/secret-management) arguments. Make sure the region you set
61+
[Secret](https://docs.haystack.deepset.ai/docs/secret-management) arguments. Make sure the region you set
6262
supports Amazon Bedrock.
6363
"""
6464

integrations/amazon_bedrock/src/haystack_integrations/components/rankers/amazon_bedrock/ranker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class AmazonBedrockRanker:
5252
automatically from the environment or the AWS configuration file.
5353
If the AWS environment is not configured, set `aws_access_key_id`, `aws_secret_access_key`,
5454
and `aws_region_name` as environment variables or pass them as
55-
[Secret](https://docs.haystack.deepset.ai/v2.0/docs/secret-management) arguments. Make sure the region you set
55+
[Secret](https://docs.haystack.deepset.ai/docs/secret-management) arguments. Make sure the region you set
5656
supports Amazon Bedrock.
5757
"""
5858

integrations/chroma/src/haystack_integrations/document_stores/chroma/document_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def filter_documents(self, filters: Optional[dict[str, Any]] = None) -> list[Doc
238238
Returns the documents that match the filters provided.
239239
240240
For a detailed specification of the filters,
241-
refer to the [documentation](https://docs.haystack.deepset.ai/v2.0/docs/metadata-filtering).
241+
refer to the [documentation](https://docs.haystack.deepset.ai/docs/metadata-filtering).
242242
243243
:param filters: the filters to apply to the document list.
244244
:returns: a list of Documents that match the given filters.
@@ -258,7 +258,7 @@ async def filter_documents_async(self, filters: Optional[dict[str, Any]] = None)
258258
Asynchronous methods are only supported for HTTP connections.
259259
260260
For a detailed specification of the filters,
261-
refer to the [documentation](https://docs.haystack.deepset.ai/v2.0/docs/metadata-filtering).
261+
refer to the [documentation](https://docs.haystack.deepset.ai/docs/metadata-filtering).
262262
263263
:param filters: the filters to apply to the document list.
264264
:returns: a list of Documents that match the given filters.

integrations/mistral/src/haystack_integrations/components/generators/mistral/chat/chat_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class MistralChatGenerator(OpenAIChatGenerator):
3434
This component uses the ChatMessage format for structuring both input and output,
3535
ensuring coherent and contextually relevant responses in chat-based text generation scenarios.
3636
Details on the ChatMessage format can be found in the
37-
[Haystack docs](https://docs.haystack.deepset.ai/v2.0/docs/data-classes#chatmessage)
37+
[Haystack docs](https://docs.haystack.deepset.ai/docs/data-classes#chatmessage)
3838
3939
For more details on the parameters supported by the Mistral API, refer to the
4040
[Mistral API Docs](https://docs.mistral.ai/api/).

integrations/mongodb_atlas/src/haystack_integrations/document_stores/mongodb_atlas/document_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def filter_documents(self, filters: Optional[dict[str, Any]] = None) -> list[Doc
283283
Returns the documents that match the filters provided.
284284
285285
For a detailed specification of the filters,
286-
refer to the Haystack [documentation](https://docs.haystack.deepset.ai/v2.0/docs/metadata-filtering).
286+
refer to the Haystack [documentation](https://docs.haystack.deepset.ai/docs/metadata-filtering).
287287
288288
:param filters: The filters to apply. It returns only the documents that match the filters.
289289
:returns: A list of Documents that match the given filters.
@@ -299,7 +299,7 @@ async def filter_documents_async(self, filters: Optional[dict[str, Any]] = None)
299299
Asynchronously returns the documents that match the filters provided.
300300
301301
For a detailed specification of the filters,
302-
refer to the Haystack [documentation](https://docs.haystack.deepset.ai/v2.0/docs/metadata-filtering).
302+
refer to the Haystack [documentation](https://docs.haystack.deepset.ai/docs/metadata-filtering).
303303
304304
:param filters: The filters to apply. It returns only the documents that match the filters.
305305
:returns: A list of Documents that match the given filters.

integrations/pgvector/src/haystack_integrations/document_stores/pgvector/document_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ def filter_documents(self, filters: Optional[dict[str, Any]] = None) -> list[Doc
762762
Returns the documents that match the filters provided.
763763
764764
For a detailed specification of the filters,
765-
refer to the [documentation](https://docs.haystack.deepset.ai/v2.0/docs/metadata-filtering)
765+
refer to the [documentation](https://docs.haystack.deepset.ai/docs/metadata-filtering)
766766
767767
:param filters: The filters to apply to the document list.
768768
:raises TypeError: If `filters` is not a dictionary.
@@ -799,7 +799,7 @@ async def filter_documents_async(self, filters: Optional[dict[str, Any]] = None)
799799
Asynchronously returns the documents that match the filters provided.
800800
801801
For a detailed specification of the filters,
802-
refer to the [documentation](https://docs.haystack.deepset.ai/v2.0/docs/metadata-filtering)
802+
refer to the [documentation](https://docs.haystack.deepset.ai/docs/metadata-filtering)
803803
804804
:param filters: The filters to apply to the document list.
805805

integrations/pinecone/src/haystack_integrations/document_stores/pinecone/document_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def filter_documents(self, filters: Optional[dict[str, Any]] = None) -> list[Doc
279279
Returns the documents that match the filters provided.
280280
281281
For a detailed specification of the filters,
282-
refer to the [documentation](https://docs.haystack.deepset.ai/v2.0/docs/metadata-filtering)
282+
refer to the [documentation](https://docs.haystack.deepset.ai/docs/metadata-filtering)
283283
284284
:param filters: The filters to apply to the document list.
285285
:returns: A list of Documents that match the given filters.

0 commit comments

Comments
 (0)