Skip to content

Commit

Permalink
Add new operator for Qdrant Vector store (#17490)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvin-a authored Jan 13, 2025
1 parent 5e3d396 commit a2139ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,10 @@ def _build_subfilter(self, filters: MetadataFilters) -> Filter:
range=Range(lte=subfilter.value),
)
)
elif subfilter.operator == FilterOperator.TEXT_MATCH:
elif (
subfilter.operator == FilterOperator.TEXT_MATCH
or subfilter.operator == FilterOperator.TEXT_MATCH_INSENSITIVE
):
conditions.append(
FieldCondition(
key=subfilter.key,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-qdrant"
readme = "README.md"
version = "0.4.2"
version = "0.4.3"

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
qdrant-client = ">=1.7.1"
grpcio = "^1.60.0"
llama-index-core = "^0.12.6"
llama-index-core = "^0.12.7"

[tool.poetry.extras]
fastembed = ["fastembed"]
Expand Down

0 comments on commit a2139ca

Please sign in to comment.