llama-index-vector-stores-chroma 0.2.2__py3-none-any.whl → 0.4.0__py3-none-any.whl
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/base.py +1 -1
- {llama_index_vector_stores_chroma-0.2.2.dist-info → llama_index_vector_stores_chroma-0.4.0.dist-info}/METADATA +4 -4
- llama_index_vector_stores_chroma-0.4.0.dist-info/RECORD +6 -0
- llama_index_vector_stores_chroma-0.2.2.dist-info/RECORD +0 -6
- {llama_index_vector_stores_chroma-0.2.2.dist-info → llama_index_vector_stores_chroma-0.4.0.dist-info}/WHEEL +0 -0
|
@@ -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)
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llama-index-vector-stores-chroma
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: llama-index vector_stores chroma integration
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Your Name
|
|
7
7
|
Author-email: you@example.com
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.9,<4.0
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
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.
|
|
16
|
-
Requires-Dist: llama-index-core (>=0.
|
|
15
|
+
Requires-Dist: chromadb (>=0.5.17)
|
|
16
|
+
Requires-Dist: llama-index-core (>=0.12.0,<0.13.0)
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
|
|
19
19
|
# LlamaIndex Vector_Stores Integration: Chroma
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
llama_index/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
llama_index/vector_stores/chroma/__init__.py,sha256=QNMK-nHKEt-wmks5mhWfdOKDybpmsqrL4neV-HCA6N4,101
|
|
3
|
+
llama_index/vector_stores/chroma/base.py,sha256=bMnmCNGwNSPbuCUi_J_DUfvpucNibq8l2U9C4AZOwXY,14845
|
|
4
|
+
llama_index_vector_stores_chroma-0.4.0.dist-info/METADATA,sha256=jicQJ7vcOH6oPwjdE5ty21WYwzU9jRrb4xuE1xffnq4,696
|
|
5
|
+
llama_index_vector_stores_chroma-0.4.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
6
|
+
llama_index_vector_stores_chroma-0.4.0.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
llama_index/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
llama_index/vector_stores/chroma/__init__.py,sha256=QNMK-nHKEt-wmks5mhWfdOKDybpmsqrL4neV-HCA6N4,101
|
|
3
|
-
llama_index/vector_stores/chroma/base.py,sha256=oauz3_klSF1VIPRgAbAROCCay44sEfTcs3AhJgcU3ZI,14843
|
|
4
|
-
llama_index_vector_stores_chroma-0.2.2.dist-info/METADATA,sha256=0zwgx-4K22l08bGZBAy8J0cV33IQEVBMuvBz-Rm_J0s,755
|
|
5
|
-
llama_index_vector_stores_chroma-0.2.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
6
|
-
llama_index_vector_stores_chroma-0.2.2.dist-info/RECORD,,
|
|
File without changes
|