llama-index-vector-stores-chroma 0.4.2__tar.gz → 0.5.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of llama-index-vector-stores-chroma might be problematic. Click here for more details.

@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llama-index-vector-stores-chroma
3
- Version: 0.4.2
3
+ Version: 0.5.1
4
4
  Summary: llama-index vector_stores chroma integration
5
5
  Author-email: Your Name <you@example.com>
6
6
  License-Expression: MIT
7
7
  License-File: LICENSE
8
8
  Requires-Python: <4.0,>=3.10
9
9
  Requires-Dist: chromadb>=0.5.17
10
- Requires-Dist: llama-index-core<0.13,>=0.12.0
10
+ Requires-Dist: llama-index-core<0.14,>=0.13.0
11
11
  Description-Content-Type: text/markdown
12
12
 
13
13
  # LlamaIndex Vector_Stores Integration: Chroma
@@ -254,7 +254,7 @@ class ChromaVectorStore(BasePydanticVectorStore):
254
254
  if not self._collection:
255
255
  raise ValueError("Collection not initialized")
256
256
 
257
- node_ids = node_ids or []
257
+ node_ids = node_ids or None
258
258
 
259
259
  if filters:
260
260
  where = _to_chroma_filter(filters)
@@ -27,7 +27,7 @@ dev = [
27
27
 
28
28
  [project]
29
29
  name = "llama-index-vector-stores-chroma"
30
- version = "0.4.2"
30
+ version = "0.5.1"
31
31
  description = "llama-index vector_stores chroma integration"
32
32
  authors = [{name = "Your Name", email = "you@example.com"}]
33
33
  requires-python = ">=3.10,<4.0"
@@ -35,7 +35,7 @@ readme = "README.md"
35
35
  license = "MIT"
36
36
  dependencies = [
37
37
  "chromadb>=0.5.17",
38
- "llama-index-core>=0.12.0,<0.13",
38
+ "llama-index-core>=0.13.0,<0.14",
39
39
  ]
40
40
 
41
41
  [tool.codespell]