swarmauri_vectorstore_doc2vec 0.6.1.dev16__tar.gz → 0.7.0.dev3__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_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/PKG-INFO +5 -7
- swarmauri_vectorstore_doc2vec-0.7.0.dev3/pyproject.toml +65 -0
- {swarmauri_vectorstore_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/swarmauri_vectorstore_doc2vec/Doc2VecVectorStore.py +1 -1
- swarmauri_vectorstore_doc2vec-0.6.1.dev16/pyproject.toml +0 -56
- {swarmauri_vectorstore_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/LICENSE +0 -0
- {swarmauri_vectorstore_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/README.md +0 -0
- {swarmauri_vectorstore_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/swarmauri_vectorstore_doc2vec/__init__.py +0 -0
{swarmauri_vectorstore_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/PKG-INFO
RENAMED
|
@@ -1,21 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: swarmauri_vectorstore_doc2vec
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0.dev3
|
|
4
4
|
Summary: A Doc2Vec based Vector Store and Doc2Vec Based Embedding Model.
|
|
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: swarmauri_base
|
|
15
|
-
Requires-Dist: swarmauri_core
|
|
16
|
-
Requires-Dist: swarmauri_embedding_doc2vec
|
|
17
|
-
Requires-Dist: swarmauri_standard
|
|
18
|
-
Project-URL: Repository, http://github.com/swarmauri/swarmauri-sdk
|
|
13
|
+
Requires-Dist: swarmauri_base
|
|
14
|
+
Requires-Dist: swarmauri_core
|
|
15
|
+
Requires-Dist: swarmauri_embedding_doc2vec
|
|
16
|
+
Requires-Dist: swarmauri_standard
|
|
19
17
|
Description-Content-Type: text/markdown
|
|
20
18
|
|
|
21
19
|

|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "swarmauri_vectorstore_doc2vec"
|
|
3
|
+
version = "0.7.0.dev3"
|
|
4
|
+
description = "A Doc2Vec based Vector Store and Doc2Vec Based Embedding Model."
|
|
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
|
+
"swarmauri_core",
|
|
18
|
+
"swarmauri_base",
|
|
19
|
+
"swarmauri_embedding_doc2vec",
|
|
20
|
+
"swarmauri_standard",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[tool.uv.sources]
|
|
24
|
+
swarmauri_core = { workspace = true }
|
|
25
|
+
swarmauri_base = { workspace = true }
|
|
26
|
+
swarmauri_embedding_doc2vec = { workspace = true }
|
|
27
|
+
swarmauri_standard = { workspace = true }
|
|
28
|
+
|
|
29
|
+
[tool.pytest.ini_options]
|
|
30
|
+
norecursedirs = ["combined", "scripts"]
|
|
31
|
+
markers = [
|
|
32
|
+
"test: standard test",
|
|
33
|
+
"unit: Unit tests",
|
|
34
|
+
"i9n: Integration tests",
|
|
35
|
+
"r8n: Regression tests",
|
|
36
|
+
"timeout: mark test to timeout after X seconds",
|
|
37
|
+
"xpass: Expected passes",
|
|
38
|
+
"xfail: Expected failures",
|
|
39
|
+
"acceptance: Acceptance tests",
|
|
40
|
+
]
|
|
41
|
+
timeout = 300
|
|
42
|
+
log_cli = true
|
|
43
|
+
log_cli_level = "INFO"
|
|
44
|
+
log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
|
|
45
|
+
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
|
|
46
|
+
asyncio_default_fixture_loop_scope = "function"
|
|
47
|
+
|
|
48
|
+
[tool.project.entry-points."swarmauri.vector_stores"]
|
|
49
|
+
Doc2VecVectorStore = "swarmauri_vectorstore_doc2vec:Doc2VecVectorStore"
|
|
50
|
+
[build-system]
|
|
51
|
+
requires = ["poetry-core>=1.0.0"]
|
|
52
|
+
build-backend = "poetry.core.masonry.api"
|
|
53
|
+
|
|
54
|
+
[dependency-groups]
|
|
55
|
+
dev = [
|
|
56
|
+
"pytest>=8.0",
|
|
57
|
+
"pytest-asyncio>=0.24.0",
|
|
58
|
+
"pytest-xdist>=3.6.1",
|
|
59
|
+
"pytest-json-report>=1.5.0",
|
|
60
|
+
"python-dotenv",
|
|
61
|
+
"requests>=2.32.3",
|
|
62
|
+
"flake8>=7.0",
|
|
63
|
+
"pytest-timeout>=2.3.1",
|
|
64
|
+
"ruff>=0.9.9",
|
|
65
|
+
]
|
|
@@ -12,7 +12,7 @@ from swarmauri_base.vector_stores.VectorStoreSaveLoadMixin import (
|
|
|
12
12
|
from swarmauri_embedding_doc2vec.Doc2VecEmbedding import (
|
|
13
13
|
Doc2VecEmbedding,
|
|
14
14
|
)
|
|
15
|
-
from
|
|
15
|
+
from swarmauri_base.ComponentBase import ComponentBase
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
@ComponentBase.register_type(VectorStoreBase, "Doc2VecVectorStore")
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "swarmauri_vectorstore_doc2vec"
|
|
3
|
-
version = "0.6.1.dev16"
|
|
4
|
-
description = "A Doc2Vec based Vector Store and Doc2Vec Based Embedding Model."
|
|
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
|
-
|
|
21
|
-
swarmauri_core = {version = "^0.6.1.dev16"}
|
|
22
|
-
swarmauri_base = {version = "^0.6.1.dev16"}
|
|
23
|
-
swarmauri_embedding_doc2vec = {version = "^0.6.1.dev16"}
|
|
24
|
-
swarmauri_standard = {version = "^0.6.1.dev3"}
|
|
25
|
-
|
|
26
|
-
[tool.poetry.group.dev.dependencies]
|
|
27
|
-
flake8 = "^7.0"
|
|
28
|
-
pytest = "^8.0"
|
|
29
|
-
pytest-asyncio = ">=0.24.0"
|
|
30
|
-
pytest-xdist = "^3.6.1"
|
|
31
|
-
pytest-json-report = "^1.5.0"
|
|
32
|
-
python-dotenv = "*"
|
|
33
|
-
requests = "^2.32.3"
|
|
34
|
-
|
|
35
|
-
[build-system]
|
|
36
|
-
requires = ["poetry-core>=1.0.0"]
|
|
37
|
-
build-backend = "poetry.core.masonry.api"
|
|
38
|
-
|
|
39
|
-
[tool.pytest.ini_options]
|
|
40
|
-
norecursedirs = ["combined", "scripts"]
|
|
41
|
-
|
|
42
|
-
markers = [
|
|
43
|
-
"test: standard test",
|
|
44
|
-
"unit: Unit tests",
|
|
45
|
-
"integration: Integration tests",
|
|
46
|
-
"acceptance: Acceptance tests",
|
|
47
|
-
"experimental: Experimental tests"
|
|
48
|
-
]
|
|
49
|
-
log_cli = true
|
|
50
|
-
log_cli_level = "INFO"
|
|
51
|
-
log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
|
|
52
|
-
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
|
|
53
|
-
asyncio_default_fixture_loop_scope = "function"
|
|
54
|
-
|
|
55
|
-
[tool.poetry.plugins."swarmauri.vector_stores"]
|
|
56
|
-
Doc2VecVectorStore = "swarmauri_vectorstore_doc2vec:Doc2VecVectorStore"
|
{swarmauri_vectorstore_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/LICENSE
RENAMED
|
File without changes
|
{swarmauri_vectorstore_doc2vec-0.6.1.dev16 → swarmauri_vectorstore_doc2vec-0.7.0.dev3}/README.md
RENAMED
|
File without changes
|