v1.3.0
What's Changed
Breaking Change: The import path for the embedders has been changed to haystack_integrations.components.embedders.voyage_embedders
.
Please replace all instances of
from voyage_embedders.voyage_document_embedder import VoyageDocumentEmbedder
and
from voyage_embedders.voyage_text_embedder import VoyageTextEmbedder
with:
from haystack_integrations.components.embedders.voyage_embedders import VoyageDocumentEmbedder, VoyageTextEmbedder
The embedders now use the Haystack Secret
API for authentication. For more information please see the Secret Management Documentation.
- chore: Schedule daily workflow run by @awinml in #26
- chore: Update examples with new pipeline.connect() API by @awinml in #28
- feat!: Update embedders to use new
Secret
API by @awinml in #29
Full Changelog: v1.2.0...v1.3.0