Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds documentation for WeaviateNeo4jRetrieverModel #47

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,21 @@ HybridCypherRetriever
:members:



*******************
External Retrievers
*******************

This section includes retrievers that integrate with databases external to Neo4j.


WeaviateNeo4jRetriever
======================

.. autoclass:: neo4j_genai.retrievers.external.weaviate.WeaviateNeo4jRetriever
:members:


******
Errors
******
Expand Down
2 changes: 2 additions & 0 deletions src/neo4j_genai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@
from .retrievers.hybrid import HybridCypherRetriever, HybridRetriever
from .retrievers.text2cypher import Text2CypherRetriever
from .retrievers.vector import VectorCypherRetriever, VectorRetriever
from .retrievers.external.weaviate import WeaviateNeo4jRetriever

__all__ = [
"VectorRetriever",
"VectorCypherRetriever",
"HybridRetriever",
"HybridCypherRetriever",
"Text2CypherRetriever",
"WeaviateNeo4jRetriever",
]
37 changes: 30 additions & 7 deletions src/neo4j_genai/retrievers/external/weaviate/weaviate.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,37 @@ def _get_search_results(
If no embedder is provided, then it will assume that the vectorizer is used in Weaviate.

See the following documentation for more details:
- [Query a vector index](https://neo4j.com/docs/cypher-manual/current/indexes-for-vector-search/#indexes-vector-query)
- [db.index.vector.queryNodes()](https://neo4j.com/docs/operations-manual/5/reference/procedures/#procedure_db_index_vector_queryNodes)
- [db.index.fulltext.queryNodes()](https://neo4j.com/docs/operations-manual/5/reference/procedures/#procedure_db_index_fulltext_querynodes)
- `Query a vector index <https://neo4j.com/docs/cypher-manual/current/indexes-for-vector-search/#indexes-vector-query>`_
- `db.index.vector.queryNodes() <https://neo4j.com/docs/operations-manual/5/reference/procedures/#procedure_db_index_vector_queryNodes>`_
- `db.index.fulltext.queryNodes() <https://neo4j.com/docs/operations-manual/5/reference/procedures/#procedure_db_index_fulltext_querynodes>`_


Example:

.. code-block:: python

import neo4j
from neo4j_genai.retrievers import WeaviateNeo4jRetriever

driver = neo4j.GraphDatabase.driver(URI, auth=AUTH)

retriever = WeaviateNeo4jRetriever(
driver=driver,
client=weaviate_client,
collection="Jeopardy",
id_property_external="neo4j_id",
id_property_neo4j="id",
)

biology_embedding = ...
retriever.search(query_vector=biology_embedding, top_k=2)


Args:
query_text (str): The text to get the closest neighbors of.
query_vector (Optional[list[float]], optional): The vector embeddings to get the closest neighbors of. Defaults to None.
top_k (int, optional): The number of neighbors to return. Defaults to 5.
weaviate_filters (Optional[_Filters], optional): The filters to apply to the search query in Weaviate. Defaults to None.
query_text (Optional[str]): The text to get the closest neighbors of.
query_vector (Optional[list[float]]): The vector embeddings to get the closest neighbors of. Defaults to None.
top_k (int): The number of neighbors to return. Defaults to 5.
weaviate_filters (Optional[_Filters]): The filters to apply to the search query in Weaviate. Defaults to None.
Raises:
SearchValidationError: If validation of the input arguments fail.
Returns:
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/weaviate_e2e/test_weaviate_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import re
import pytest
import weaviate
from neo4j_genai.retrievers.external.weaviate import WeaviateNeo4jRetriever
from neo4j_genai import WeaviateNeo4jRetriever
from langchain_community.embeddings import HuggingFaceEmbeddings

from neo4j_genai.types import RetrieverResult, RetrieverResultItem
Expand Down
Loading