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:
python
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](https://docs.haystack.deepset.ai/docs/secret-management).
* chore: Schedule daily workflow run by awinml in https://github.com/awinml/voyage-embedders-haystack/pull/26
* chore: Update examples with new pipeline.connect() API by awinml in https://github.com/awinml/voyage-embedders-haystack/pull/28
* feat!: Update embedders to use new `Secret` API by awinml in https://github.com/awinml/voyage-embedders-haystack/pull/29
**Full Changelog**: https://github.com/awinml/voyage-embedders-haystack/compare/v1.2.0...v1.3.0