llama-index-vector-stores-chroma 0.0.2a0__tar.gz → 0.1.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-index-vector-stores-chroma
3
- Version: 0.0.2a0
3
+ Version: 0.1.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
  Requires-Dist: chromadb (>=0.4.22,<0.5.0)
15
- Requires-Dist: llama-index-core (>=0.9.32,<0.10.0)
15
+ Requires-Dist: llama-index-core (==0.10.0)
16
16
  Requires-Dist: onnxruntime (>=1.17.0,<2.0.0)
17
17
  Requires-Dist: tokenizers (>=0.15.1,<0.16.0)
18
18
  Description-Content-Type: text/markdown
@@ -1,4 +1,3 @@
1
1
  from llama_index.vector_stores.chroma.base import ChromaVectorStore
2
2
 
3
-
4
3
  __all__ = ["ChromaVectorStore"]
@@ -5,7 +5,6 @@ from typing import Any, Dict, Generator, List, Optional, cast
5
5
 
6
6
  import chromadb
7
7
  from chromadb.api.models.Collection import Collection
8
-
9
8
  from llama_index.core.bridge.pydantic import Field, PrivateAttr
10
9
  from llama_index.core.schema import BaseNode, MetadataMode, TextNode
11
10
  from llama_index.core.utils import truncate_text
@@ -1,40 +1,34 @@
1
1
  [build-system]
2
- requires = ["poetry-core"]
3
2
  build-backend = "poetry.core.masonry.api"
3
+ requires = ["poetry-core"]
4
4
 
5
5
  [tool.codespell]
6
6
  check-filenames = true
7
7
  check-hidden = true
8
- # Feel free to un-skip examples, and experimental, you will just need to
9
- # work through many typos (--write-changes and --interactive will help)
10
8
  skip = "*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb"
11
9
 
12
10
  [tool.mypy]
13
11
  disallow_untyped_defs = true
14
- # Remove venv skip when integrated with pre-commit
15
12
  exclude = ["_static", "build", "examples", "notebooks", "venv"]
16
13
  ignore_missing_imports = true
17
14
  python_version = "3.8"
18
15
 
19
16
  [tool.poetry]
20
- name = "llama-index-vector-stores-chroma"
21
- version = "0.0.2a0"
22
- description = "llama-index vector_stores chroma integration"
23
17
  authors = ["Your Name <you@example.com>"]
18
+ description = "llama-index vector_stores chroma integration"
24
19
  license = "MIT"
20
+ name = "llama-index-vector-stores-chroma"
25
21
  readme = "README.md"
26
- packages = [{include = "llama_index/"}]
22
+ version = "0.1.0"
27
23
 
28
24
  [tool.poetry.dependencies]
29
25
  python = ">=3.8.1,<3.12"
30
- llama-index-core = "^0.9.32"
26
+ llama-index-core = "0.10.0"
31
27
  chromadb = "^0.4.22"
32
28
  onnxruntime = "^1.17.0"
33
29
  tokenizers = "^0.15.1"
34
30
 
35
31
  [tool.poetry.group.dev.dependencies]
36
- black = {extras = ["jupyter"], version = "<=23.9.1,>=23.7.0"}
37
- codespell = {extras = ["toml"], version = ">=v2.2.6"}
38
32
  ipython = "8.10.0"
39
33
  jupyter = "^1.0.0"
40
34
  mypy = "0.991"
@@ -48,5 +42,16 @@ types-Deprecated = ">=0.1.0"
48
42
  types-PyYAML = "^6.0.12.12"
49
43
  types-protobuf = "^4.24.0.4"
50
44
  types-redis = "4.5.5.0"
51
- types-requests = "2.28.11.8" # TODO: unpin when mypy>0.991
45
+ types-requests = "2.28.11.8"
52
46
  types-setuptools = "67.1.0.0"
47
+
48
+ [tool.poetry.group.dev.dependencies.black]
49
+ extras = ["jupyter"]
50
+ version = "<=23.9.1,>=23.7.0"
51
+
52
+ [tool.poetry.group.dev.dependencies.codespell]
53
+ extras = ["toml"]
54
+ version = ">=v2.2.6"
55
+
56
+ [[tool.poetry.packages]]
57
+ include = "llama_index/"