mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-10 17:46:15 +00:00
Adds deprecation notices for Neo4j components moving to the `langchain_neo4j` partner package. - Adds deprecation warnings to all Neo4j-related classes and functions that have been migrated to the new `langchain_neo4j` partner package - Updates documentation to reference the new `langchain_neo4j` package instead of `langchain_community`
67 lines
1.9 KiB
Python
67 lines
1.9 KiB
Python
from typing import Dict, Tuple, Union
|
|
|
|
from langchain_core._api.deprecation import deprecated
|
|
from langchain_core.structured_query import (
|
|
Comparator,
|
|
Comparison,
|
|
Operation,
|
|
Operator,
|
|
StructuredQuery,
|
|
Visitor,
|
|
)
|
|
|
|
|
|
@deprecated(
|
|
since="0.3.8",
|
|
removal="1.0",
|
|
alternative_import="langchain_neo4j.query_constructors.neo4j.Neo4jTranslator",
|
|
)
|
|
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
|