Skip to content

Commit

Permalink
retry reno
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Jan 25, 2024
1 parent e9cab5a commit fa0baca
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions releasenotes/notes/1-24-prelude-67fb1ade9df0eff4.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
---
prelude:
- |
Amazon Bedrock supports new embedding models ([#6406](https://github.com/deepset-ai/haystack/pull/6406))
You can now use Titan and Cohere embedding models in your pipelines via the Amazon Bedrock integration.
prelude: |
* Amazon Bedrock supports new embedding models ([#6406](https://github.com/deepset-ai/haystack/pull/6406))
You can now use Titan and Cohere embedding models in your pipelines via the Amazon Bedrock integration.
```python
from haystack.nodes import EmbeddingRetriever
```python
from haystack.nodes import EmbeddingRetriever
retriever = EmbeddingRetriever(
embedding_model="amazon.titan-embed-text-v1",
document_store=document_store,
aws_config = {"aws_access_key_id": "ACCESS_KEY",
"aws_secret_access_key": "SECRET_KEY",
"aws_session_token": "SESSION_TOKEN"}
)
```
retriever = EmbeddingRetriever(
embedding_model="amazon.titan-embed-text-v1",
document_store=document_store,
aws_config = {"aws_access_key_id": "ACCESS_KEY",
"aws_secret_access_key": "SECRET_KEY",
"aws_session_token": "SESSION_TOKEN"}
)
```
- |
Use any WebDriver you want in Crawler [#5465](https://github.com/deepset-ai/haystack/pull/5465)
The `WebDriver` that power's Haystack's crawler is no longer limited to Chrome.
Now you can configure it to use `WebDriver` you'd like.
* Use any WebDriver you want in Crawler [#5465](https://github.com/deepset-ai/haystack/pull/5465)
The `WebDriver` that power's Haystack's crawler is no longer limited to Chrome.
Now you can configure it to use `WebDriver` you'd like.

0 comments on commit fa0baca

Please sign in to comment.