llama-index-vector-stores-chroma 0.1.3__py3-none-any.whl → 0.1.4__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 +2 -0
- {llama_index_vector_stores_chroma-0.1.3.dist-info → llama_index_vector_stores_chroma-0.1.4.dist-info}/METADATA +1 -1
- llama_index_vector_stores_chroma-0.1.4.dist-info/RECORD +5 -0
- llama_index_vector_stores_chroma-0.1.3.dist-info/RECORD +0 -5
- {llama_index_vector_stores_chroma-0.1.3.dist-info → llama_index_vector_stores_chroma-0.1.4.dist-info}/WHEEL +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"""Chroma vector store."""
|
|
2
|
+
|
|
2
3
|
import logging
|
|
3
4
|
import math
|
|
4
5
|
from typing import Any, Dict, Generator, List, Optional, cast
|
|
@@ -143,6 +144,7 @@ class ChromaVectorStore(BasePydanticVectorStore):
|
|
|
143
144
|
**kwargs: Any,
|
|
144
145
|
) -> None:
|
|
145
146
|
"""Init params."""
|
|
147
|
+
collection_kwargs = collection_kwargs or {}
|
|
146
148
|
if chroma_collection is None:
|
|
147
149
|
client = chromadb.HttpClient(host=host, port=port, ssl=ssl, headers=headers)
|
|
148
150
|
self._collection = client.get_or_create_collection(
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
llama_index/vector_stores/chroma/__init__.py,sha256=QNMK-nHKEt-wmks5mhWfdOKDybpmsqrL4neV-HCA6N4,101
|
|
2
|
+
llama_index/vector_stores/chroma/base.py,sha256=2iKtu2kVUEOk_nT2oO7UYlnmAeGmYYbxnU46xkRtsGc,10859
|
|
3
|
+
llama_index_vector_stores_chroma-0.1.4.dist-info/METADATA,sha256=oLu1D1fOKltwgJEhmhroxtVeFEfuAmFoLI9GZMbthgk,795
|
|
4
|
+
llama_index_vector_stores_chroma-0.1.4.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
5
|
+
llama_index_vector_stores_chroma-0.1.4.dist-info/RECORD,,
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
llama_index/vector_stores/chroma/__init__.py,sha256=QNMK-nHKEt-wmks5mhWfdOKDybpmsqrL4neV-HCA6N4,101
|
|
2
|
-
llama_index/vector_stores/chroma/base.py,sha256=vfjdFpq09_6Wp9ui7GKpVoMn6RcanaIhb_aYlg8XVhc,10806
|
|
3
|
-
llama_index_vector_stores_chroma-0.1.3.dist-info/METADATA,sha256=_z8SieKKGySTV767MQYmPcIvObQgzOJuDQICG8slmJ4,795
|
|
4
|
-
llama_index_vector_stores_chroma-0.1.3.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
5
|
-
llama_index_vector_stores_chroma-0.1.3.dist-info/RECORD,,
|
|
File without changes
|