-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:
MongoDBAtlasEmbeddingRetriever
(#427)
* initial implementation * vector index seems non functional * tests are green for docstore * tests green * no parallel tests * lint * use different collections for write tests * fix tests * black * docstring * add doc fields * black * Update integrations/mongodb_atlas/src/haystack_integrations/components/retrievers/mongodb_atlas/embedding_retriever.py Co-authored-by: Madeesh Kannan <[email protected]> * Update integrations/mongodb_atlas/src/haystack_integrations/components/retrievers/mongodb_atlas/embedding_retriever.py * Update integrations/mongodb_atlas/src/haystack_integrations/components/retrievers/mongodb_atlas/embedding_retriever.py * Update integrations/mongodb_atlas/src/haystack_integrations/components/retrievers/mongodb_atlas/embedding_retriever.py * Update integrations/mongodb_atlas/src/haystack_integrations/components/retrievers/mongodb_atlas/embedding_retriever.py * Update integrations/mongodb_atlas/src/haystack_integrations/document_stores/mongodb_atlas/document_store.py * Update integrations/mongodb_atlas/src/haystack_integrations/document_stores/mongodb_atlas/document_store.py Co-authored-by: Madeesh Kannan <[email protected]> * Update integrations/mongodb_atlas/src/haystack_integrations/document_stores/mongodb_atlas/document_store.py Co-authored-by: Madeesh Kannan <[email protected]> * Update integrations/mongodb_atlas/src/haystack_integrations/document_stores/mongodb_atlas/document_store.py * black * docstring * black * mypy * rename * deserialization * unused import * Update integrations/mongodb_atlas/src/haystack_integrations/components/retrievers/mongodb_atlas/embedding_retriever.py Co-authored-by: Silvano Cerza <[email protected]> * change import * ruff * remove numpy conversion --------- Co-authored-by: Madeesh Kannan <[email protected]> Co-authored-by: Silvano Cerza <[email protected]>
- Loading branch information
1 parent
c8db92f
commit 8f73a8b
Showing
7 changed files
with
376 additions
and
38 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
...s/mongodb_atlas/src/haystack_integrations/components/retrievers/mongodb_atlas/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from haystack_integrations.components.retrievers.mongodb_atlas.embedding_retriever import MongoDBAtlasEmbeddingRetriever | ||
|
||
__all__ = ["MongoDBAtlasEmbeddingRetriever"] |
88 changes: 88 additions & 0 deletions
88
...tlas/src/haystack_integrations/components/retrievers/mongodb_atlas/embedding_retriever.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# SPDX-FileCopyrightText: 2023-present deepset GmbH <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
from typing import Any, Dict, List, Optional | ||
|
||
from haystack import component, default_from_dict, default_to_dict | ||
from haystack.dataclasses import Document | ||
from haystack_integrations.document_stores.mongodb_atlas import MongoDBAtlasDocumentStore | ||
|
||
|
||
@component | ||
class MongoDBAtlasEmbeddingRetriever: | ||
""" | ||
Retrieves documents from the MongoDBAtlasDocumentStore by embedding similarity. | ||
Needs to be connected to the MongoDBAtlasDocumentStore. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
*, | ||
document_store: MongoDBAtlasDocumentStore, | ||
filters: Optional[Dict[str, Any]] = None, | ||
top_k: int = 10, | ||
): | ||
""" | ||
Create the MongoDBAtlasDocumentStore component. | ||
:param document_store: An instance of MongoDBAtlasDocumentStore. | ||
:param filters: Filters applied to the retrieved Documents. | ||
:param top_k: Maximum number of Documents to return. | ||
""" | ||
if not isinstance(document_store, MongoDBAtlasDocumentStore): | ||
msg = "document_store must be an instance of MongoDBAtlasDocumentStore" | ||
raise ValueError(msg) | ||
|
||
self.document_store = document_store | ||
self.filters = filters or {} | ||
self.top_k = top_k | ||
|
||
def to_dict(self) -> Dict[str, Any]: | ||
""" | ||
Serializes this component into a dictionary. | ||
""" | ||
return default_to_dict( | ||
self, | ||
filters=self.filters, | ||
top_k=self.top_k, | ||
document_store=self.document_store.to_dict(), | ||
) | ||
|
||
@classmethod | ||
def from_dict(cls, data: Dict[str, Any]) -> "MongoDBAtlasEmbeddingRetriever": | ||
""" | ||
Deserializes a dictionary created with `MongoDBAtlasEmbeddingRetriever.to_dict()` into a | ||
`MongoDBAtlasEmbeddingRetriever` instance. | ||
:param data: the dictionary returned by `MongoDBAtlasEmbeddingRetriever.to_dict()` | ||
""" | ||
data["init_parameters"]["document_store"] = MongoDBAtlasDocumentStore.from_dict( | ||
data["init_parameters"]["document_store"] | ||
) | ||
return default_from_dict(cls, data) | ||
|
||
@component.output_types(documents=List[Document]) | ||
def run( | ||
self, | ||
query_embedding: List[float], | ||
filters: Optional[Dict[str, Any]] = None, | ||
top_k: Optional[int] = None, | ||
) -> Dict[str, List[Document]]: | ||
""" | ||
Retrieve documents from the MongoDBAtlasDocumentStore, based on their embeddings. | ||
:param query_embedding: Embedding of the query. | ||
:param filters: Filters applied to the retrieved Documents. Overrides the value specified at initialization. | ||
:param top_k: Maximum number of Documents to return. Overrides the value specified at initialization. | ||
:return: List of Documents similar to `query_embedding`. | ||
""" | ||
filters = filters or self.filters | ||
top_k = top_k or self.top_k | ||
|
||
docs = self.document_store.embedding_retrieval( | ||
query_embedding_np=query_embedding, | ||
filters=filters, | ||
top_k=top_k, | ||
) | ||
return {"documents": docs} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.