llama-index-vector-stores-chroma 0.1.3__tar.gz → 0.1.4__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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-index-vector-stores-chroma
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: llama-index vector_stores chroma integration
5
5
  License: MIT
6
6
  Author: Your Name
@@ -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(
@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
27
27
  license = "MIT"
28
28
  name = "llama-index-vector-stores-chroma"
29
29
  readme = "README.md"
30
- version = "0.1.3"
30
+ version = "0.1.4"
31
31
 
32
32
  [tool.poetry.dependencies]
33
33
  python = ">=3.8.1,<4.0"