supervaizer 0.10.1__tar.gz → 0.10.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.
- {supervaizer-0.10.1 → supervaizer-0.10.4}/PKG-INFO +29 -28
- {supervaizer-0.10.1 → supervaizer-0.10.4}/pyproject.toml +43 -27
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/__version__.py +1 -1
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/docker.py +0 -1
- {supervaizer-0.10.1 → supervaizer-0.10.4}/.gitignore +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/LICENSE.md +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/README.md +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/__init__.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/account.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/account_service.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/routes.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/static/js/job-start-form.js +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/agent_detail.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/agents.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/agents_grid.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/base.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/case_detail.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/cases_list.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/cases_table.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/console.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/dashboard.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/job_detail.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/job_start_test.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/jobs_list.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/jobs_table.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/navigation.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/recent_activity.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/server.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/server_status_cards.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/supervaize_instructions.html +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/agent.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/case.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/cli.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/common.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/__init__.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/cli.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/commands/__init__.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/commands/clean.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/commands/down.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/commands/local.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/commands/plan.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/commands/status.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/commands/up.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/driver_factory.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/drivers/__init__.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/drivers/aws_app_runner.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/drivers/base.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/drivers/cloud_run.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/drivers/do_app_platform.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/health.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/state.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/templates/Dockerfile.template +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/templates/debug_env.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/templates/docker-compose.yml.template +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/templates/dockerignore.template +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/templates/entrypoint.sh +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/utils.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/event.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/examples/controller_template.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/instructions.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/job.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/job_service.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/lifecycle.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/parameter.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/protocol/__init__.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/protocol/a2a/__init__.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/protocol/a2a/model.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/protocol/a2a/routes.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/py.typed +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/routes.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/server.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/server_utils.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/storage.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/telemetry.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/utils/__init__.py +0 -0
- {supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/utils/version_check.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: supervaizer
|
|
3
|
-
Version: 0.10.
|
|
3
|
+
Version: 0.10.4
|
|
4
4
|
Summary: Controller system for Supervaize
|
|
5
5
|
Project-URL: Homepage, https://supervaize.com
|
|
6
6
|
Project-URL: Repository, https://github.com/supervaize/supervaizer
|
|
@@ -14,46 +14,47 @@ Classifier: Intended Audience :: Developers
|
|
|
14
14
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
18
|
Requires-Python: >=3.12
|
|
18
19
|
Requires-Dist: art>=6.5
|
|
19
|
-
Requires-Dist: cryptography>=46.0.
|
|
20
|
-
Requires-Dist: demjson3>=3.0.
|
|
21
|
-
Requires-Dist: deprecated>=1.
|
|
22
|
-
Requires-Dist: fastapi>=0.
|
|
20
|
+
Requires-Dist: cryptography>=46.0.0
|
|
21
|
+
Requires-Dist: demjson3>=3.0.0
|
|
22
|
+
Requires-Dist: deprecated>=1.3.0
|
|
23
|
+
Requires-Dist: fastapi>=0.128.0
|
|
23
24
|
Requires-Dist: httpx>=0.28.1
|
|
24
25
|
Requires-Dist: jinja2>=3.1.6
|
|
25
26
|
Requires-Dist: loguru>=0.7.3
|
|
26
|
-
Requires-Dist: orjson>=3.11.
|
|
27
|
-
Requires-Dist: packaging>=
|
|
28
|
-
Requires-Dist: psutil>=7.
|
|
27
|
+
Requires-Dist: orjson>=3.11.5
|
|
28
|
+
Requires-Dist: packaging>=25.0
|
|
29
|
+
Requires-Dist: psutil>=7.2.0
|
|
29
30
|
Requires-Dist: pydantic>=2.12.0
|
|
30
|
-
Requires-Dist: python-slugify>=8.0.
|
|
31
|
-
Requires-Dist: pyyaml>=6.0.
|
|
32
|
-
Requires-Dist: rich>=14.
|
|
33
|
-
Requires-Dist: shortuuid>=1.0.
|
|
34
|
-
Requires-Dist: sse-starlette>=3.0
|
|
35
|
-
Requires-Dist: tinydb>=4.8.
|
|
36
|
-
Requires-Dist: typer>=0.
|
|
37
|
-
Requires-Dist: uvicorn>=0.
|
|
31
|
+
Requires-Dist: python-slugify>=8.0.0
|
|
32
|
+
Requires-Dist: pyyaml>=6.0.0
|
|
33
|
+
Requires-Dist: rich>=14.3.0
|
|
34
|
+
Requires-Dist: shortuuid>=1.0.0
|
|
35
|
+
Requires-Dist: sse-starlette>=3.2.0
|
|
36
|
+
Requires-Dist: tinydb>=4.8.0
|
|
37
|
+
Requires-Dist: typer>=0.21.0
|
|
38
|
+
Requires-Dist: uvicorn>=0.40.0
|
|
38
39
|
Provides-Extra: deploy
|
|
39
|
-
Requires-Dist: boto3>=1.
|
|
40
|
+
Requires-Dist: boto3>=1.42.30; extra == 'deploy'
|
|
40
41
|
Requires-Dist: docker>=7.0.0; extra == 'deploy'
|
|
41
|
-
Requires-Dist: google-cloud-artifact-registry>=1.
|
|
42
|
-
Requires-Dist: google-cloud-run>=0.
|
|
43
|
-
Requires-Dist: google-cloud-secret-manager>=2.
|
|
42
|
+
Requires-Dist: google-cloud-artifact-registry>=1.19.0; extra == 'deploy'
|
|
43
|
+
Requires-Dist: google-cloud-run>=0.15.0; extra == 'deploy'
|
|
44
|
+
Requires-Dist: google-cloud-secret-manager>=2.26.0; extra == 'deploy'
|
|
44
45
|
Provides-Extra: dev
|
|
45
|
-
Requires-Dist: hatch>=1.
|
|
46
|
-
Requires-Dist: jsonschema>=4.
|
|
47
|
-
Requires-Dist: mypy>=1.
|
|
48
|
-
Requires-Dist: pre-commit>=
|
|
49
|
-
Requires-Dist: pytest-asyncio>=1.
|
|
46
|
+
Requires-Dist: hatch>=1.16.3; extra == 'dev'
|
|
47
|
+
Requires-Dist: jsonschema>=4.26.0; extra == 'dev'
|
|
48
|
+
Requires-Dist: mypy>=1.19.1; extra == 'dev'
|
|
49
|
+
Requires-Dist: pre-commit>=4.5.1; extra == 'dev'
|
|
50
|
+
Requires-Dist: pytest-asyncio>=1.3.0; extra == 'dev'
|
|
50
51
|
Requires-Dist: pytest-cov>=7.0.0; extra == 'dev'
|
|
51
52
|
Requires-Dist: pytest-mock>=3.15.1; extra == 'dev'
|
|
52
53
|
Requires-Dist: pytest-sugar>=1.1.1; extra == 'dev'
|
|
53
|
-
Requires-Dist: pytest>=8.
|
|
54
|
+
Requires-Dist: pytest>=8.5.0; extra == 'dev'
|
|
54
55
|
Requires-Dist: respx>=0.22.0; extra == 'dev'
|
|
55
|
-
Requires-Dist: ruff>=0.
|
|
56
|
-
Requires-Dist: types-deprecated>=1.
|
|
56
|
+
Requires-Dist: ruff>=0.14.14; extra == 'dev'
|
|
57
|
+
Requires-Dist: types-deprecated>=1.3.1; extra == 'dev'
|
|
57
58
|
Requires-Dist: types-python-slugify>=8.0.2.20240310; extra == 'dev'
|
|
58
59
|
Description-Content-Type: text/markdown
|
|
59
60
|
|
|
@@ -8,25 +8,25 @@ authors = [
|
|
|
8
8
|
]
|
|
9
9
|
dependencies = [
|
|
10
10
|
"art>=6.5",
|
|
11
|
-
"cryptography>=46.0.
|
|
12
|
-
"demjson3>=3.0.
|
|
13
|
-
"deprecated>=1.
|
|
14
|
-
"fastapi>=0.
|
|
11
|
+
"cryptography>=46.0.0",
|
|
12
|
+
"demjson3>=3.0.0",
|
|
13
|
+
"deprecated>=1.3.0",
|
|
14
|
+
"fastapi>=0.128.0",
|
|
15
15
|
"httpx>=0.28.1",
|
|
16
16
|
"jinja2>=3.1.6",
|
|
17
17
|
"loguru>=0.7.3",
|
|
18
|
-
"orjson>=3.11.
|
|
19
|
-
"packaging>=
|
|
20
|
-
"psutil>=7.
|
|
18
|
+
"orjson>=3.11.5",
|
|
19
|
+
"packaging>=25.0",
|
|
20
|
+
"psutil>=7.2.0",
|
|
21
21
|
"pydantic>=2.12.0",
|
|
22
|
-
"python-slugify>=8.0.
|
|
23
|
-
"pyyaml>=6.0.
|
|
24
|
-
"rich>=14.
|
|
25
|
-
"shortuuid>=1.0.
|
|
26
|
-
"sse-starlette>=3.0
|
|
27
|
-
"tinydb>=4.8.
|
|
28
|
-
"typer>=0.
|
|
29
|
-
"uvicorn>=0.
|
|
22
|
+
"python-slugify>=8.0.0",
|
|
23
|
+
"pyyaml>=6.0.0",
|
|
24
|
+
"rich>=14.3.0",
|
|
25
|
+
"shortuuid>=1.0.0",
|
|
26
|
+
"sse-starlette>=3.2.0",
|
|
27
|
+
"tinydb>=4.8.0",
|
|
28
|
+
"typer>=0.21.0",
|
|
29
|
+
"uvicorn>=0.40.0",
|
|
30
30
|
]
|
|
31
31
|
license = "MPL-2.0"
|
|
32
32
|
classifiers = [
|
|
@@ -35,6 +35,7 @@ classifiers = [
|
|
|
35
35
|
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
|
36
36
|
"Programming Language :: Python :: 3",
|
|
37
37
|
"Programming Language :: Python :: 3.12",
|
|
38
|
+
"Programming Language :: Python :: 3.13",
|
|
38
39
|
]
|
|
39
40
|
keywords = ["AI", "controller", "workflow", "supervaize", "agent", "agentic"]
|
|
40
41
|
dynamic = ["version"]
|
|
@@ -49,25 +50,25 @@ supervaizer = "supervaizer.cli:app"
|
|
|
49
50
|
|
|
50
51
|
[project.optional-dependencies]
|
|
51
52
|
deploy = [
|
|
52
|
-
"boto3>=1.
|
|
53
|
+
"boto3>=1.42.30",
|
|
53
54
|
"docker>=7.0.0",
|
|
54
|
-
"google-cloud-artifact-registry>=1.
|
|
55
|
-
"google-cloud-run>=0.
|
|
56
|
-
"google-cloud-secret-manager>=2.
|
|
55
|
+
"google-cloud-artifact-registry>=1.19.0",
|
|
56
|
+
"google-cloud-run>=0.15.0",
|
|
57
|
+
"google-cloud-secret-manager>=2.26.0",
|
|
57
58
|
]
|
|
58
59
|
dev = [
|
|
59
|
-
"hatch>=1.
|
|
60
|
-
"jsonschema>=4.
|
|
61
|
-
"mypy>=1.
|
|
62
|
-
"pre-commit>=
|
|
63
|
-
"pytest-asyncio>=1.
|
|
60
|
+
"hatch>=1.16.3",
|
|
61
|
+
"jsonschema>=4.26.0",
|
|
62
|
+
"mypy>=1.19.1",
|
|
63
|
+
"pre-commit>=4.5.1",
|
|
64
|
+
"pytest-asyncio>=1.3.0",
|
|
64
65
|
"pytest-cov>=7.0.0",
|
|
65
66
|
"pytest-mock>=3.15.1",
|
|
66
67
|
"pytest-sugar>=1.1.1",
|
|
67
|
-
"pytest>=8.
|
|
68
|
+
"pytest>=8.5.0",
|
|
68
69
|
"respx>=0.22.0",
|
|
69
|
-
"ruff>=0.
|
|
70
|
-
"types-deprecated>=1.
|
|
70
|
+
"ruff>=0.14.14",
|
|
71
|
+
"types-deprecated>=1.3.1",
|
|
71
72
|
"types-python-slugify>=8.0.2.20240310",
|
|
72
73
|
|
|
73
74
|
]
|
|
@@ -118,3 +119,18 @@ allow_untyped_globals = false
|
|
|
118
119
|
no_implicit_optional = true
|
|
119
120
|
mypy_path = "src"
|
|
120
121
|
disallow_any_expr = false
|
|
122
|
+
|
|
123
|
+
[tool.bumpversion]
|
|
124
|
+
current_version = "0.10.4"
|
|
125
|
+
commit = true
|
|
126
|
+
tag = true
|
|
127
|
+
tag_name = "v{new_version}"
|
|
128
|
+
tag_message = "Release {new_version}"
|
|
129
|
+
message = "Bump version: {current_version} → {new_version}"
|
|
130
|
+
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
131
|
+
serialize = ["{major}.{minor}.{patch}"]
|
|
132
|
+
|
|
133
|
+
[[tool.bumpversion.files]]
|
|
134
|
+
filename = "src/supervaizer/__version__.py"
|
|
135
|
+
search = 'VERSION = "{current_version}"'
|
|
136
|
+
replace = 'VERSION = "{new_version}"'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/job_start_test.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/recent_activity.html
RENAMED
|
File without changes
|
|
File without changes
|
{supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/admin/templates/server_status_cards.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/templates/Dockerfile.template
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{supervaizer-0.10.1 → supervaizer-0.10.4}/src/supervaizer/deploy/templates/dockerignore.template
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|