llama-index-vector-stores-chroma 0.2.1__tar.gz → 0.3.0__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.
- {llama_index_vector_stores_chroma-0.2.1 → llama_index_vector_stores_chroma-0.3.0}/PKG-INFO +2 -2
- {llama_index_vector_stores_chroma-0.2.1 → llama_index_vector_stores_chroma-0.3.0}/llama_index/vector_stores/chroma/base.py +3 -3
- {llama_index_vector_stores_chroma-0.2.1 → llama_index_vector_stores_chroma-0.3.0}/pyproject.toml +2 -2
- {llama_index_vector_stores_chroma-0.2.1 → llama_index_vector_stores_chroma-0.3.0}/README.md +0 -0
- {llama_index_vector_stores_chroma-0.2.1 → llama_index_vector_stores_chroma-0.3.0}/llama_index/py.typed +0 -0
- {llama_index_vector_stores_chroma-0.2.1 → llama_index_vector_stores_chroma-0.3.0}/llama_index/vector_stores/chroma/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llama-index-vector-stores-chroma
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: llama-index vector_stores chroma integration
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Your Name
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
-
Requires-Dist: chromadb (>=0.
|
|
15
|
+
Requires-Dist: chromadb (>=0.5.17)
|
|
16
16
|
Requires-Dist: llama-index-core (>=0.11.0,<0.12.0)
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
|
|
@@ -255,7 +255,7 @@ class ChromaVectorStore(BasePydanticVectorStore):
|
|
|
255
255
|
if filters:
|
|
256
256
|
where = _to_chroma_filter(filters)
|
|
257
257
|
else:
|
|
258
|
-
where =
|
|
258
|
+
where = None
|
|
259
259
|
|
|
260
260
|
result = self._get(None, where=where, ids=node_ids)
|
|
261
261
|
|
|
@@ -332,7 +332,7 @@ class ChromaVectorStore(BasePydanticVectorStore):
|
|
|
332
332
|
if filters:
|
|
333
333
|
where = _to_chroma_filter(filters)
|
|
334
334
|
else:
|
|
335
|
-
where =
|
|
335
|
+
where = None
|
|
336
336
|
|
|
337
337
|
self._collection.delete(ids=node_ids, where=where)
|
|
338
338
|
|
|
@@ -363,7 +363,7 @@ class ChromaVectorStore(BasePydanticVectorStore):
|
|
|
363
363
|
)
|
|
364
364
|
where = _to_chroma_filter(query.filters)
|
|
365
365
|
else:
|
|
366
|
-
where = kwargs.pop("where",
|
|
366
|
+
where = kwargs.pop("where", None)
|
|
367
367
|
|
|
368
368
|
if not query.query_embedding:
|
|
369
369
|
return self._get(limit=query.similarity_top_k, where=where, **kwargs)
|
{llama_index_vector_stores_chroma-0.2.1 → llama_index_vector_stores_chroma-0.3.0}/pyproject.toml
RENAMED
|
@@ -27,11 +27,11 @@ exclude = ["**/BUILD"]
|
|
|
27
27
|
license = "MIT"
|
|
28
28
|
name = "llama-index-vector-stores-chroma"
|
|
29
29
|
readme = "README.md"
|
|
30
|
-
version = "0.
|
|
30
|
+
version = "0.3.0"
|
|
31
31
|
|
|
32
32
|
[tool.poetry.dependencies]
|
|
33
33
|
python = ">=3.8.1,<4.0"
|
|
34
|
-
chromadb = ">=0.
|
|
34
|
+
chromadb = ">=0.5.17"
|
|
35
35
|
llama-index-core = "^0.11.0"
|
|
36
36
|
|
|
37
37
|
[tool.poetry.group.dev.dependencies]
|
|
File without changes
|
|
File without changes
|