mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
6377185291
- [x] **PR title - community: add neo4j query constructor for self query** - [x] **PR message** - **Description:** adding a Neo4jTranslator so that the Neo4j vector database can use SelfQueryRetriever - **Issue:** this issue had been raised before in #19748 - **Dependencies:** none. - **Twitter handle:** @moyi_dang - p.s. I have not added the query constructor in BUILTIN_TRANSLATORS in this PR, I want to make changes to only one package at a time. - [x] **Add tests and docs**: If you're adding a new integration, please include 1. a test for the integration, preferably unit tests that do not rely on network access, 2. an example notebook showing its use. It lives in `docs/docs/integrations` directory. - [x] **Lint and test**: Run `make format`, `make lint` and `make test` from the root of the package(s) you've modified. See contribution guidelines for more: https://python.langchain.com/docs/contributing/ Additional guidelines: - Make sure optional dependencies are imported within a function. - Please do not add dependencies to pyproject.toml files (even optional ones) unless they are required for unit tests. - Most PRs should not touch more than one package. - Changes should be backwards compatible. - If you are adding something to community, do not re-import it in langchain. If no one reviews your PR within a few days, please @-mention one of baskaryan, efriis, eyurtsev, ccurme, vbarda, hwchase17. --------- Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Chester Curme <chester.curme@gmail.com>
61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
from typing import Dict, Tuple, Union
|
|
|
|
from langchain_core.structured_query import (
|
|
Comparator,
|
|
Comparison,
|
|
Operation,
|
|
Operator,
|
|
StructuredQuery,
|
|
Visitor,
|
|
)
|
|
|
|
|
|
class Neo4jTranslator(Visitor):
|
|
"""Translate `Neo4j` internal query language elements to valid filters."""
|
|
|
|
allowed_operators = [Operator.AND, Operator.OR]
|
|
"""Subset of allowed logical operators."""
|
|
|
|
allowed_comparators = [
|
|
Comparator.EQ,
|
|
Comparator.NE,
|
|
Comparator.GTE,
|
|
Comparator.LTE,
|
|
Comparator.LT,
|
|
Comparator.GT,
|
|
]
|
|
|
|
def _format_func(self, func: Union[Operator, Comparator]) -> str:
|
|
self._validate_func(func)
|
|
map_dict = {
|
|
Operator.AND: "$and",
|
|
Operator.OR: "$or",
|
|
Comparator.EQ: "$eq",
|
|
Comparator.NE: "$ne",
|
|
Comparator.GTE: "$gte",
|
|
Comparator.LTE: "$lte",
|
|
Comparator.LT: "$lt",
|
|
Comparator.GT: "$gt",
|
|
}
|
|
return map_dict[func]
|
|
|
|
def visit_operation(self, operation: Operation) -> Dict:
|
|
args = [arg.accept(self) for arg in operation.arguments]
|
|
return {self._format_func(operation.operator): args}
|
|
|
|
def visit_comparison(self, comparison: Comparison) -> Dict:
|
|
return {
|
|
comparison.attribute: {
|
|
self._format_func(comparison.comparator): comparison.value
|
|
}
|
|
}
|
|
|
|
def visit_structured_query(
|
|
self, structured_query: StructuredQuery
|
|
) -> Tuple[str, dict]:
|
|
if structured_query.filter is None:
|
|
kwargs = {}
|
|
else:
|
|
kwargs = {"filter": structured_query.filter.accept(self)}
|
|
return structured_query.query, kwargs
|