llama-index-vector-stores-chroma 0.1.9__tar.gz → 0.1.10__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.1.9 → llama_index_vector_stores_chroma-0.1.10}/PKG-INFO +2 -1
- {llama_index_vector_stores_chroma-0.1.9 → llama_index_vector_stores_chroma-0.1.10}/llama_index/vector_stores/chroma/base.py +1 -1
- {llama_index_vector_stores_chroma-0.1.9 → llama_index_vector_stores_chroma-0.1.10}/pyproject.toml +1 -1
- {llama_index_vector_stores_chroma-0.1.9 → llama_index_vector_stores_chroma-0.1.10}/README.md +0 -0
- {llama_index_vector_stores_chroma-0.1.9 → llama_index_vector_stores_chroma-0.1.10}/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.1.
|
|
3
|
+
Version: 0.1.10
|
|
4
4
|
Summary: llama-index vector_stores chroma integration
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Your Name
|
|
@@ -11,6 +11,7 @@ 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
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
15
|
Requires-Dist: chromadb (>=0.4.0,<0.6.0)
|
|
15
16
|
Requires-Dist: llama-index-core (>=0.10.1,<0.11.0)
|
|
16
17
|
Description-Content-Type: text/markdown
|
|
@@ -443,7 +443,7 @@ class ChromaVectorStore(BasePydanticVectorStore):
|
|
|
443
443
|
results["ids"] = [[]]
|
|
444
444
|
|
|
445
445
|
for node_id, text, metadata in zip(
|
|
446
|
-
results["ids"]
|
|
446
|
+
results["ids"], results["documents"], results["metadatas"]
|
|
447
447
|
):
|
|
448
448
|
try:
|
|
449
449
|
node = metadata_dict_to_node(metadata)
|
{llama_index_vector_stores_chroma-0.1.9 → llama_index_vector_stores_chroma-0.1.10}/README.md
RENAMED
|
File without changes
|