Skip to content

Commit

Permalink
Fix the index accessing of ids of chroma get (#14434)
Browse files Browse the repository at this point in the history
* Fix the index accessing of ids of chroma get

* vbump

---------

Co-authored-by: Andrei Fajardo <[email protected]>
  • Loading branch information
henry8168 and nerdai authored Jun 27, 2024
1 parent 8d5ea16 commit f599f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def _get(
results["ids"] = [[]]

for node_id, text, metadata in zip(
results["ids"][0], results["documents"], results["metadatas"]
results["ids"], results["documents"], results["metadatas"]
):
try:
node = metadata_dict_to_node(metadata)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-chroma"
readme = "README.md"
version = "0.1.9"
version = "0.1.10"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down

0 comments on commit f599f15

Please sign in to comment.