Skip to content

Commit

Permalink
update filters, update version (run-llama#16806)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Nov 4, 2024
1 parent d4a31cf commit b987b34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def query(self, query: VectorStoreQuery, **kwargs: Any) -> VectorStoreQueryResul
)
where = _to_chroma_filter(query.filters)
else:
where = kwargs.pop("where", {})
where = kwargs.pop("where", None)

if not query.query_embedding:
return self._get(limit=query.similarity_top_k, where=where, **kwargs)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-chroma"
readme = "README.md"
version = "0.2.2"
version = "0.3.0"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
chromadb = ">=0.4.0,<0.6.0,!=0.5.4,!=0.5.7,!=0.5.9,!=0.5.10,!=0.5.11,!=0.5.12"
chromadb = ">=0.5.17"
llama-index-core = "^0.11.0"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit b987b34

Please sign in to comment.