swarmauri_vectorstore_persistentchromadb 0.9.0.dev4__tar.gz → 0.9.2.dev6__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.
- {swarmauri_vectorstore_persistentchromadb-0.9.0.dev4 → swarmauri_vectorstore_persistentchromadb-0.9.2.dev6}/PKG-INFO +10 -4
- {swarmauri_vectorstore_persistentchromadb-0.9.0.dev4 → swarmauri_vectorstore_persistentchromadb-0.9.2.dev6}/README.md +1 -1
- {swarmauri_vectorstore_persistentchromadb-0.9.0.dev4 → swarmauri_vectorstore_persistentchromadb-0.9.2.dev6}/pyproject.toml +15 -1
- {swarmauri_vectorstore_persistentchromadb-0.9.0.dev4 → swarmauri_vectorstore_persistentchromadb-0.9.2.dev6}/LICENSE +0 -0
- {swarmauri_vectorstore_persistentchromadb-0.9.0.dev4 → swarmauri_vectorstore_persistentchromadb-0.9.2.dev6}/swarmauri_vectorstore_persistentchromadb/PersistentChromaDBVectorStore.py +0 -0
- {swarmauri_vectorstore_persistentchromadb-0.9.0.dev4 → swarmauri_vectorstore_persistentchromadb-0.9.2.dev6}/swarmauri_vectorstore_persistentchromadb/__init__.py +0 -0
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: swarmauri_vectorstore_persistentchromadb
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.2.dev6
|
|
4
4
|
Summary: A Persistent ChromaDB based Vector Store
|
|
5
|
-
License: Apache-2.0
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: swarmauri,vectorstore,persistentchromadb,persistent,chromadb,based,vector,store
|
|
6
8
|
Author: Jacob Stewart
|
|
7
9
|
Author-email: jacob@swarmauri.com
|
|
8
10
|
Requires-Python: >=3.10,<3.13
|
|
@@ -10,6 +12,10 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
10
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Development Status :: 3 - Alpha
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
13
19
|
Requires-Dist: chromadb (>=0.5.17)
|
|
14
20
|
Requires-Dist: swarmauri_base
|
|
15
21
|
Requires-Dist: swarmauri_core
|
|
@@ -18,7 +24,7 @@ Requires-Dist: swarmauri_standard
|
|
|
18
24
|
Description-Content-Type: text/markdown
|
|
19
25
|
|
|
20
26
|
|
|
21
|
-

|
|
22
28
|
|
|
23
29
|
<p align="center">
|
|
24
30
|
<a href="https://pypi.org/project/swarmauri_vectorstore_persistentchromadb/">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-

|
|
3
3
|
|
|
4
4
|
<p align="center">
|
|
5
5
|
<a href="https://pypi.org/project/swarmauri_vectorstore_persistentchromadb/">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "swarmauri_vectorstore_persistentchromadb"
|
|
3
|
-
version = "0.9.
|
|
3
|
+
version = "0.9.2.dev6"
|
|
4
4
|
description = "A Persistent ChromaDB based Vector Store"
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
@@ -11,6 +11,10 @@ classifiers = [
|
|
|
11
11
|
"Programming Language :: Python :: 3.10",
|
|
12
12
|
"Programming Language :: Python :: 3.11",
|
|
13
13
|
"Programming Language :: Python :: 3.12",
|
|
14
|
+
"Natural Language :: English",
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
14
18
|
]
|
|
15
19
|
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
16
20
|
dependencies = [
|
|
@@ -20,6 +24,16 @@ dependencies = [
|
|
|
20
24
|
"swarmauri_standard",
|
|
21
25
|
"swarmauri_embedding_doc2vec",
|
|
22
26
|
]
|
|
27
|
+
keywords = [
|
|
28
|
+
"swarmauri",
|
|
29
|
+
"vectorstore",
|
|
30
|
+
"persistentchromadb",
|
|
31
|
+
"persistent",
|
|
32
|
+
"chromadb",
|
|
33
|
+
"based",
|
|
34
|
+
"vector",
|
|
35
|
+
"store",
|
|
36
|
+
]
|
|
23
37
|
|
|
24
38
|
[tool.uv.sources]
|
|
25
39
|
swarmauri_core = { workspace = true }
|
|
File without changes
|
|
File without changes
|