swarmauri_vectorstore_persistentchromadb 0.6.1.dev16__tar.gz → 0.7.0.dev2__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.
@@ -1,22 +1,20 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: swarmauri_vectorstore_persistentchromadb
3
- Version: 0.6.1.dev16
3
+ Version: 0.7.0.dev2
4
4
  Summary: A Persistent ChromaDB based Vector Store
5
5
  License: Apache-2.0
6
6
  Author: Jacob Stewart
7
7
  Author-email: jacob@swarmauri.com
8
8
  Requires-Python: >=3.10,<3.13
9
9
  Classifier: License :: OSI Approved :: Apache Software License
10
- Classifier: Programming Language :: Python :: 3
11
10
  Classifier: Programming Language :: Python :: 3.10
12
11
  Classifier: Programming Language :: Python :: 3.11
13
12
  Classifier: Programming Language :: Python :: 3.12
14
- Requires-Dist: chromadb (>=0.5.17,<0.6.0)
15
- Requires-Dist: swarmauri_base (>=0.6.1.dev16,<0.7.0)
16
- Requires-Dist: swarmauri_core (>=0.6.1.dev16,<0.7.0)
17
- Requires-Dist: swarmauri_embedding_doc2vec (>=0.6.1.dev16,<0.7.0)
18
- Requires-Dist: swarmauri_standard (>=0.6.1.dev3,<0.7.0)
19
- Project-URL: Repository, http://github.com/swarmauri/swarmauri-sdk
13
+ Requires-Dist: chromadb (>=0.5.17)
14
+ Requires-Dist: swarmauri_base
15
+ Requires-Dist: swarmauri_core
16
+ Requires-Dist: swarmauri_embedding_doc2vec
17
+ Requires-Dist: swarmauri_standard
20
18
  Description-Content-Type: text/markdown
21
19
 
22
20
  ![Swarmauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
@@ -0,0 +1,66 @@
1
+ [project]
2
+ name = "swarmauri_vectorstore_persistentchromadb"
3
+ version = "0.7.0.dev2"
4
+ description = "A Persistent ChromaDB based Vector Store"
5
+ license = "Apache-2.0"
6
+ readme = "README.md"
7
+ repository = "http://github.com/swarmauri/swarmauri-sdk"
8
+ requires-python = ">=3.10,<3.13"
9
+ classifiers = [
10
+ "License :: OSI Approved :: Apache Software License",
11
+ "Programming Language :: Python :: 3.10",
12
+ "Programming Language :: Python :: 3.11",
13
+ "Programming Language :: Python :: 3.12",
14
+ ]
15
+ authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
16
+ dependencies = [
17
+ "chromadb>=0.5.17",
18
+ "swarmauri_core",
19
+ "swarmauri_base",
20
+ "swarmauri_standard",
21
+ "swarmauri_embedding_doc2vec",
22
+ ]
23
+
24
+ [tool.uv.sources]
25
+ swarmauri_core = { workspace = true }
26
+ swarmauri_base = { workspace = true }
27
+ swarmauri_standard = { workspace = true }
28
+ swarmauri_embedding_doc2vec = { workspace = true }
29
+
30
+ [tool.pytest.ini_options]
31
+ norecursedirs = ["combined", "scripts"]
32
+ markers = [
33
+ "test: standard test",
34
+ "unit: Unit tests",
35
+ "i9n: Integration tests",
36
+ "r8n: Regression tests",
37
+ "timeout: mark test to timeout after X seconds",
38
+ "xpass: Expected passes",
39
+ "xfail: Expected failures",
40
+ "acceptance: Acceptance tests",
41
+ ]
42
+ timeout = 300
43
+ log_cli = true
44
+ log_cli_level = "INFO"
45
+ log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
46
+ log_cli_date_format = "%Y-%m-%d %H:%M:%S"
47
+ asyncio_default_fixture_loop_scope = "function"
48
+
49
+ [tool.project.entry-points."swarmauri.vector_stores"]
50
+ PersistentChromaDBVectorStore = "swarmauri_vectorstore_persistentchromadb.PersistentChromaDBVectorStore:PersistentChromaDBVectorStore"
51
+ [build-system]
52
+ requires = ["poetry-core>=1.0.0"]
53
+ build-backend = "poetry.core.masonry.api"
54
+
55
+ [dependency-groups]
56
+ dev = [
57
+ "pytest>=8.0",
58
+ "pytest-asyncio>=0.24.0",
59
+ "pytest-xdist>=3.6.1",
60
+ "pytest-json-report>=1.5.0",
61
+ "python-dotenv",
62
+ "requests>=2.32.3",
63
+ "flake8>=7.0",
64
+ "pytest-timeout>=2.3.1",
65
+ "ruff>=0.9.9",
66
+ ]
@@ -17,7 +17,7 @@ from swarmauri_base.vector_stores.VectorStoreSaveLoadMixin import (
17
17
  from swarmauri_base.vector_stores.VectorStorePersistentMixin import (
18
18
  VectorStorePersistentMixin,
19
19
  )
20
- from swarmauri_core.ComponentBase import ComponentBase
20
+ from swarmauri_base.ComponentBase import ComponentBase
21
21
 
22
22
 
23
23
  @ComponentBase.register_type(VectorStoreBase, "PersistentChromaDBVectorStore")
@@ -1,59 +0,0 @@
1
- [tool.poetry]
2
- name = "swarmauri_vectorstore_persistentchromadb"
3
- version = "0.6.1.dev16"
4
- description = "A Persistent ChromaDB based Vector Store"
5
- authors = ["Jacob Stewart <jacob@swarmauri.com>"]
6
- license = "Apache-2.0"
7
- readme = "README.md"
8
- repository = "http://github.com/swarmauri/swarmauri-sdk"
9
- classifiers = [
10
- "License :: OSI Approved :: Apache Software License",
11
- "Programming Language :: Python :: 3.10",
12
- "Programming Language :: Python :: 3.11",
13
- "Programming Language :: Python :: 3.12"
14
- ]
15
-
16
- [tool.poetry.dependencies]
17
- python = ">=3.10,<3.13"
18
-
19
- # Swarmauri
20
- swarmauri_core = {version = "^0.6.1.dev16"}
21
- swarmauri_base = {version = "^0.6.1.dev16"}
22
- swarmauri_standard = {version = "^0.6.1.dev3"}
23
- swarmauri_embedding_doc2vec = {version = "^0.6.1.dev16"}
24
-
25
-
26
- # Dependencies
27
- chromadb = "^0.5.17"
28
-
29
- [tool.poetry.group.dev.dependencies]
30
- flake8 = "^7.0"
31
- pytest = "^8.0"
32
- pytest-asyncio = ">=0.24.0"
33
- pytest-xdist = "^3.6.1"
34
- pytest-json-report = "^1.5.0"
35
- python-dotenv = "*"
36
- requests = "^2.32.3"
37
-
38
- [build-system]
39
- requires = ["poetry-core>=1.0.0"]
40
- build-backend = "poetry.core.masonry.api"
41
-
42
- [tool.pytest.ini_options]
43
- norecursedirs = ["combined", "scripts"]
44
-
45
- markers = [
46
- "test: standard test",
47
- "unit: Unit tests",
48
- "integration: Integration tests",
49
- "acceptance: Acceptance tests",
50
- "experimental: Experimental tests"
51
- ]
52
- log_cli = true
53
- log_cli_level = "INFO"
54
- log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
55
- log_cli_date_format = "%Y-%m-%d %H:%M:%S"
56
- asyncio_default_fixture_loop_scope = "function"
57
-
58
- [tool.poetry.plugins."swarmauri.vector_stores"]
59
- PersistentChromaDBVectorStore = "swarmauri_vectorstore_persistentchromadb.PersistentChromaDBVectorStore:PersistentChromaDBVectorStore"