supervaizer 0.10.5__py3-none-any.whl

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.
Files changed (76) hide show
  1. supervaizer/__init__.py +97 -0
  2. supervaizer/__version__.py +10 -0
  3. supervaizer/account.py +308 -0
  4. supervaizer/account_service.py +93 -0
  5. supervaizer/admin/routes.py +1293 -0
  6. supervaizer/admin/static/js/job-start-form.js +373 -0
  7. supervaizer/admin/templates/agent_detail.html +145 -0
  8. supervaizer/admin/templates/agents.html +249 -0
  9. supervaizer/admin/templates/agents_grid.html +82 -0
  10. supervaizer/admin/templates/base.html +233 -0
  11. supervaizer/admin/templates/case_detail.html +230 -0
  12. supervaizer/admin/templates/cases_list.html +182 -0
  13. supervaizer/admin/templates/cases_table.html +134 -0
  14. supervaizer/admin/templates/console.html +389 -0
  15. supervaizer/admin/templates/dashboard.html +153 -0
  16. supervaizer/admin/templates/job_detail.html +192 -0
  17. supervaizer/admin/templates/job_start_test.html +109 -0
  18. supervaizer/admin/templates/jobs_list.html +180 -0
  19. supervaizer/admin/templates/jobs_table.html +122 -0
  20. supervaizer/admin/templates/navigation.html +163 -0
  21. supervaizer/admin/templates/recent_activity.html +81 -0
  22. supervaizer/admin/templates/server.html +105 -0
  23. supervaizer/admin/templates/server_status_cards.html +121 -0
  24. supervaizer/admin/templates/supervaize_instructions.html +212 -0
  25. supervaizer/agent.py +956 -0
  26. supervaizer/case.py +432 -0
  27. supervaizer/cli.py +395 -0
  28. supervaizer/common.py +324 -0
  29. supervaizer/deploy/__init__.py +16 -0
  30. supervaizer/deploy/cli.py +305 -0
  31. supervaizer/deploy/commands/__init__.py +9 -0
  32. supervaizer/deploy/commands/clean.py +294 -0
  33. supervaizer/deploy/commands/down.py +119 -0
  34. supervaizer/deploy/commands/local.py +460 -0
  35. supervaizer/deploy/commands/plan.py +167 -0
  36. supervaizer/deploy/commands/status.py +169 -0
  37. supervaizer/deploy/commands/up.py +281 -0
  38. supervaizer/deploy/docker.py +377 -0
  39. supervaizer/deploy/driver_factory.py +42 -0
  40. supervaizer/deploy/drivers/__init__.py +39 -0
  41. supervaizer/deploy/drivers/aws_app_runner.py +607 -0
  42. supervaizer/deploy/drivers/base.py +196 -0
  43. supervaizer/deploy/drivers/cloud_run.py +570 -0
  44. supervaizer/deploy/drivers/do_app_platform.py +504 -0
  45. supervaizer/deploy/health.py +404 -0
  46. supervaizer/deploy/state.py +210 -0
  47. supervaizer/deploy/templates/Dockerfile.template +44 -0
  48. supervaizer/deploy/templates/debug_env.py +69 -0
  49. supervaizer/deploy/templates/docker-compose.yml.template +37 -0
  50. supervaizer/deploy/templates/dockerignore.template +66 -0
  51. supervaizer/deploy/templates/entrypoint.sh +20 -0
  52. supervaizer/deploy/utils.py +52 -0
  53. supervaizer/event.py +181 -0
  54. supervaizer/examples/controller_template.py +196 -0
  55. supervaizer/instructions.py +145 -0
  56. supervaizer/job.py +392 -0
  57. supervaizer/job_service.py +156 -0
  58. supervaizer/lifecycle.py +417 -0
  59. supervaizer/parameter.py +233 -0
  60. supervaizer/protocol/__init__.py +11 -0
  61. supervaizer/protocol/a2a/__init__.py +21 -0
  62. supervaizer/protocol/a2a/model.py +227 -0
  63. supervaizer/protocol/a2a/routes.py +99 -0
  64. supervaizer/py.typed +1 -0
  65. supervaizer/routes.py +917 -0
  66. supervaizer/server.py +553 -0
  67. supervaizer/server_utils.py +54 -0
  68. supervaizer/storage.py +462 -0
  69. supervaizer/telemetry.py +81 -0
  70. supervaizer/utils/__init__.py +16 -0
  71. supervaizer/utils/version_check.py +56 -0
  72. supervaizer-0.10.5.dist-info/METADATA +317 -0
  73. supervaizer-0.10.5.dist-info/RECORD +76 -0
  74. supervaizer-0.10.5.dist-info/WHEEL +4 -0
  75. supervaizer-0.10.5.dist-info/entry_points.txt +2 -0
  76. supervaizer-0.10.5.dist-info/licenses/LICENSE.md +346 -0
@@ -0,0 +1,317 @@
1
+ Metadata-Version: 2.4
2
+ Name: supervaizer
3
+ Version: 0.10.5
4
+ Summary: Controller system for Supervaize
5
+ Project-URL: Homepage, https://supervaize.com
6
+ Project-URL: Repository, https://github.com/supervaize/supervaizer
7
+ Project-URL: Documentation, https://doc.supervaize.com
8
+ Author-email: Alain Prasquier - Supervaize <alain@supervaize.com>
9
+ License-Expression: MPL-2.0
10
+ License-File: LICENSE.md
11
+ Keywords: AI,agent,agentic,controller,supervaize,workflow
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Requires-Python: >=3.12
19
+ Requires-Dist: art>=6.5
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
24
+ Requires-Dist: httpx>=0.28.1
25
+ Requires-Dist: jinja2>=3.1.6
26
+ Requires-Dist: loguru>=0.7.3
27
+ Requires-Dist: orjson>=3.11.5
28
+ Requires-Dist: packaging>=25.0
29
+ Requires-Dist: psutil>=7.2.0
30
+ Requires-Dist: pydantic>=2.12.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
39
+ Provides-Extra: deploy
40
+ Requires-Dist: boto3>=1.42.30; extra == 'deploy'
41
+ Requires-Dist: docker>=7.0.0; extra == 'deploy'
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'
45
+ Provides-Extra: dev
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'
51
+ Requires-Dist: pytest-cov>=7.0.0; extra == 'dev'
52
+ Requires-Dist: pytest-mock>=3.15.1; extra == 'dev'
53
+ Requires-Dist: pytest-sugar>=1.1.1; extra == 'dev'
54
+ Requires-Dist: pytest>=8.5.0; extra == 'dev'
55
+ Requires-Dist: respx>=0.22.0; extra == 'dev'
56
+ Requires-Dist: ruff>=0.14.14; extra == 'dev'
57
+ Requires-Dist: types-deprecated>=1.3.1; extra == 'dev'
58
+ Requires-Dist: types-python-slugify>=8.0.2.20240310; extra == 'dev'
59
+ Description-Content-Type: text/markdown
60
+
61
+ # SUPERVAIZER
62
+
63
+ [Operate AI Agents with confidence]
64
+
65
+ A Python toolkit for building, managing, and connecting AI agents with full [Agent-to-Agent (A2A)](https://a2a-protocol.org/) protocol support.
66
+
67
+ [![Python Version](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue.svg)](https://www.python.org/downloads/)
68
+ [![A2A Protocol](https://img.shields.io/badge/A2A-Protocol-orange.svg)](https://a2a-protocol.org/)
69
+ [![Test Coverage](https://img.shields.io/badge/Coverage-81%25-brightgreen.svg)](https://github.com/supervaize/supervaizer)
70
+
71
+ > **⚠️ Beta Disclaimer**: SUPERVAIZER is currently in beta mode. Not everything works as expected yet. Please report any issues you encounter.
72
+
73
+ - [SUPERVAIZER](#supervaizer)
74
+ - [Description](#description)
75
+ - [Quick Start](#quick-start)
76
+ - [What we'll do](#what-well-do)
77
+ - [1. Install Supervaizer](#1-install-supervaizer)
78
+ - [3. Scaffold the controller](#3-scaffold-the-controller)
79
+ - [(Optional) 4. Configure your Supervaize account \& environment](#optional-4-configure-your-supervaize-account--environment)
80
+ - [5. Start the server 🚀](#5-start-the-server-)
81
+ - [6. Optional parameters](#6-optional-parameters)
82
+ - [What's next?](#whats-next)
83
+ - [Features](#features)
84
+ - [Protocol Support](#protocol-support)
85
+ - [Cloud Deployment](#cloud-deployment)
86
+ - [Quick Start](#quick-start-1)
87
+ - [Deployment Commands](#deployment-commands)
88
+ - [Features](#features-1)
89
+ - [Documentation](#documentation)
90
+ - [Using the CLI](#using-the-cli)
91
+ - [API Documentation \& User Interfaces](#api-documentation--user-interfaces)
92
+ - [Admin Interface (`/admin`)](#admin-interface-admin)
93
+ - [Quick Start](#quick-start-2)
94
+ - [Calculating costs](#calculating-costs)
95
+ - [Documentation](#documentation-1)
96
+ - [Contributing](#contributing)
97
+ - [License](#license)
98
+
99
+ ## Description
100
+
101
+ SUPERVAIZER is a toolkit built for the age of AI interoperability. At its core, it implements the Agent-to-Agent (A2A) protocol, enabling seamless discovery and interaction between agents across different systems and platforms.
102
+
103
+ With comprehensive support for the A2A protocol specification, SUPERVAIZER allows you to:
104
+
105
+ - Enhance the capabilities of your agents, making them automatically discoverable by other A2A compatible systems
106
+ - Expose standardized agent capabilities through agent cards
107
+ - Monitor agent health and status through dedicated endpoints
108
+ - Connect your agents to the growing ecosystem of A2A-compatible tools
109
+
110
+ Beyond A2A interoperability, SUPERVAIZER provides a robust API for agent registration, job control, event handling, telemetry, and more, making it a crucial component for building and managing AI agent systems.
111
+
112
+ SUPERVAIZER is the recommended controller to integrate AI Agents into the [supervaize](https://supervaize.com) plateform.
113
+
114
+ ## Quick Start
115
+
116
+ Kickstart a **Python** agent with the **Supervaizer Controller** so it's discoverable and operable by Supervaize.
117
+
118
+ See full our full [documentation](https://doc.supervaize.com/docs/category/supervaizer-controller)
119
+
120
+ ### What we'll do
121
+
122
+ 1. **Install Supervaizer** in that project
123
+ 2. **Scaffold the controller** and map it to your agent
124
+ 3. **Configure secrets & env**, then **start** the server 🚀
125
+
126
+ ### 1. Install Supervaizer
127
+
128
+ First, navigate to your existing Python AI agent project. This could be built with any framework - LangChain, CrewAI, AutoGen, or your own custom implementation. Supervaizer works as a wrapper around your existing agent, regardless of the underlying framework you're using.
129
+
130
+ ```bash
131
+ pip install supervaizer
132
+ ```
133
+
134
+ ### 3. Scaffold the controller
135
+
136
+ Generate a starter controller in your project:
137
+
138
+ ```bash
139
+ supervaizer scaffold
140
+ # Success: Created an example file at supervaizer_control_example.py
141
+ ```
142
+
143
+ This creates **`supervaizer_control_example.py`**. You'll customize it to:
144
+
145
+ - Define **agent parameters** (secrets, env, required inputs)
146
+ - Define **agent methods** (start/stop/status, etc.)
147
+ - Map those methods to **your agent's functions**
148
+
149
+ ### (Optional) 4. Configure your Supervaize account & environment
150
+
151
+ Create your developer account on the [Supervaize platform](https://www.supervaize.com).
152
+
153
+ Create your API Key and collect your environment variables:
154
+
155
+ ```bash
156
+ export SUPERVAIZE_API_KEY=...
157
+ export SUPERVAIZE_WORKSPACE_ID=team_1
158
+ export SUPERVAIZE_API_URL=https://app.supervaize.com
159
+ ```
160
+
161
+ ### 5. Start the server 🚀
162
+
163
+ ```bash
164
+ # with the virtual environment active
165
+ supervaizer start
166
+ ```
167
+
168
+ Or run directly:
169
+
170
+ ```bash
171
+ python supervaizer_control.py
172
+ ```
173
+
174
+ Once the server is running, you'll have:
175
+
176
+ - **API docs**: `http://127.0.0.1:8000/docs` (Swagger) and `/redoc`
177
+ - **A2A discovery**: `/.well-known/agents.json`
178
+ - **ACP discovery**: `/agents`
179
+
180
+ ### 6. Optional parameters
181
+
182
+ Configure retry behavior for HTTP requests to the Supervaize API:
183
+
184
+ - **`SUPERVAIZE_HTTP_MAX_RETRIES`**: Number of retry attempts for failed HTTP requests (default: `2`). The client will automatically retry requests that fail with status codes 429, 500, 502, 503, or 504.
185
+
186
+ ```bash
187
+ export SUPERVAIZE_MAX_HTTP_RETRIES=3 # Will attempt up to 4 times total (1 original + 3 retries)
188
+ ```
189
+
190
+ ### What's next?
191
+
192
+ - Add more **custom methods** (`chat`, `custom`) to extend control
193
+ - Turn on **A2A** discovery for interoperability
194
+ - Hook your controller into Supervaize to **monitor, audit, and operate** the agent
195
+
196
+ For detailed instructions on customizing your controller, see the [Controller Setup Guide](https://doc.supervaize.com/docs/supervaizer-controller/controller-setup)
197
+
198
+ ## Features
199
+
200
+ - **Agent Management**: Register, update, and control agents
201
+ - **Job Control**: Create, track, and manage jobs
202
+ - **Event Handling**: Process and respond to system events
203
+ - **🚀 Cloud Deployment**: Automated deployment to GCP Cloud Run, AWS App Runner, and DigitalOcean App Platform
204
+ - **A2A Protocol Support**: Full integration with the Agent-to-Agent protocol for standardized agent discovery and interaction
205
+ - **Server Communication**: Interact with SUPERVAIZE servers (see [supervaize.com](https://www.supervaize.com) for more info)
206
+ - **Web Admin Interface**: Easy to use web-based admin dashboard for managing jobs, cases, and system monitoring
207
+
208
+ ## Protocol Support
209
+
210
+ SUPERVAIZER provides comprehensive support for the A2A agent communication protocol. See [Protocol Documentation](docs/PROTOCOLS.md) for complete details.
211
+
212
+ ## Cloud Deployment
213
+
214
+ SUPERVAIZER includes a powerful deployment CLI that automates the entire process of deploying your agents to production cloud platforms.
215
+
216
+ ### Quick Start
217
+
218
+ ```bash
219
+ # Install with deployment dependencies
220
+ pip install supervaizer[deploy]
221
+
222
+ # Test locally with Docker
223
+ supervaizer deploy local --generate-api-key --generate-rsa
224
+
225
+ # Deploy to Google Cloud Run
226
+ supervaizer deploy up --platform cloud-run --region us-central1
227
+
228
+ # Deploy to AWS App Runner
229
+ supervaizer deploy up --platform aws-app-runner --region us-east-1
230
+
231
+ # Deploy to DigitalOcean App Platform
232
+ supervaizer deploy up --platform do-app-platform --region nyc
233
+ ```
234
+
235
+ ### Deployment Commands
236
+
237
+ - **`supervaizer deploy plan`** - Preview deployment actions before applying
238
+ - **`supervaizer deploy up`** - Deploy to cloud platform with automated build, push, and verification
239
+ - **`supervaizer deploy down`** - Tear down deployment and clean up resources
240
+ - **`supervaizer deploy status`** - Check deployment status and health
241
+ - **`supervaizer deploy local`** - Local Docker testing with docker-compose
242
+ - **`supervaizer deploy clean`** - Clean up deployment artifacts and state
243
+
244
+ ### Features
245
+
246
+ - ✅ **Automated Docker Workflow**: Build → Push → Deploy → Verify
247
+ - ✅ **Secret Management**: Secure handling of API keys and RSA keys
248
+ - ✅ **Health Verification**: Automatic health checks at `/.well-known/health`
249
+ - ✅ **Idempotent Deployments**: Safe create/update operations with rollback on failure
250
+ - ✅ **Local Testing**: Full Docker Compose environment for pre-deployment testing
251
+
252
+ ### Documentation
253
+
254
+ - [RFC-001: Cloud Deployment CLI](docs/rfc/001-cloud-deployment-cli.md) - Complete specification
255
+ - [Local Testing Guide](docs/LOCAL_TESTING.md) - Docker testing documentation
256
+
257
+ ## Using the CLI
258
+
259
+ SUPERVAIZER includes a command-line interface to simplify setup and operation. See [CLI Documentation](docs/CLI.md) for complete details.
260
+
261
+ Also, check the list of [Environment variables](CLI.md#environment-variables).
262
+
263
+ ## API Documentation & User Interfaces
264
+
265
+ SUPERVAIZER provides multiple ways to interact with and explore the API. See [REST API Documentation](docs/REST_API.md) for complete details.
266
+
267
+ ### Admin Interface (`/admin`)
268
+
269
+ A comprehensive web-based admin interface for managing your SUPERVAIZER instance
270
+ See [Admin documentation](docs/ADMIN_README.md)
271
+
272
+ #### Quick Start
273
+
274
+ ```python
275
+ from supervaizer import Server, Agent
276
+
277
+ # Create server with admin interface
278
+ server = Server(
279
+ agents=[your_agents],
280
+ api_key="your-secure-api-key", # Required for admin interface
281
+ admin_interface=True, # Enable admin interface (default: True)
282
+ )
283
+
284
+ server.launch()
285
+ print(f"Admin Interface: http://localhost:8000/admin/")
286
+ ```
287
+
288
+ # Calculating costs
289
+
290
+ Developers are free to define the cost of the transaction the way they want when updating the cases.
291
+ Here is a way to easily get an estimate of the cost of an LLM transaction (note that litellm also supports custom pricing. )
292
+
293
+ ```python
294
+ from litellm import completion_cost
295
+ prompt = "Explain how transformers work."
296
+ output = "Transformers use attention mechanisms..."
297
+ model = "gpt-4"
298
+ cost = completion_cost(model=model, prompt=prompt, completion=output)
299
+ print(cost)
300
+ ```
301
+
302
+ A list of costs is maintained here:
303
+ `https://raw.githubusercontent.com/BerriAI/litellm/main/model_prices_and_context_window.json`
304
+
305
+ ## Documentation
306
+
307
+ For a full tutorial and example usage, go to [doc.supervaize.com](https://doc.supervaize.com)
308
+
309
+ ## Contributing
310
+
311
+ We welcome contributions from the community! Whether you're fixing bugs, adding features, improving documentation, or sharing feedback, your contributions help make SUPERVAIZER better for everyone.
312
+
313
+ Please see our [Contributing Guidelines](CONTRIBUTING.md) for details on how to get started, coding standards, and the contribution process.
314
+
315
+ ## License
316
+
317
+ This project is licensed under the [Mozilla Public License 2.0](LICENSE.md) License.
@@ -0,0 +1,76 @@
1
+ supervaizer/__init__.py,sha256=eBbGjduMBH-FDjcGlSqeR4Kf4uo60Cf1DrRur8VGkJo,2341
2
+ supervaizer/__version__.py,sha256=qlIH8dSecrW9K7OJHX-wf9QuxYRMhfsImO-0ebKqOpM,348
3
+ supervaizer/account.py,sha256=-K1pd590Lp2TncZ2jn442kBLxnm482G3WnQavVFxZ1s,11102
4
+ supervaizer/account_service.py,sha256=z4lw8qp8XvCrU6Ndf4VHRnQwY_071410ts5_7E8YDAs,3046
5
+ supervaizer/agent.py,sha256=Clenvdr_v-lV7_v6YCcevp8dj5JUNvpTWrBZBYM82lg,36509
6
+ supervaizer/case.py,sha256=dOgRujyf4MFcZ-937zxJbqLIPduKg6ZspHuhnWiq13Q,14385
7
+ supervaizer/cli.py,sha256=3KH4gZXTiJ9GtY375kGm5HaKCGV2V8WEbcWdF_sWWEc,13936
8
+ supervaizer/common.py,sha256=6ygNS1YxliP-e6OEVX7vDuC8YAaT2rYhjqQ_8txnWlg,10066
9
+ supervaizer/event.py,sha256=2aupUV1HkF0-nBFVmO5ddvj9jb4MiWr2MCxEamHFhx4,5516
10
+ supervaizer/instructions.py,sha256=L0uoZXg8N4PnLxJiqBgD4Pbce-hHTDUx1yImRbtNZNg,4146
11
+ supervaizer/job.py,sha256=sHDic0q-Eujei7GNb64VO7rRsBd88optrWC8Z3iMZ5Q,13554
12
+ supervaizer/job_service.py,sha256=22Qe7Z5_u3R28tcNH_21YMIYciWFtJaM7I-MXtIhBMU,4681
13
+ supervaizer/lifecycle.py,sha256=5CunJN7MsM5blyNiFMJMLFDUBmTmmAsPE24QC-gSbYA,13958
14
+ supervaizer/parameter.py,sha256=sYDuGof_w6mlix0oxjB6odV0sO0QSBL1KwFZa3Y2cOA,8157
15
+ supervaizer/routes.py,sha256=o3u7pGGLE0MQzWtQNdd5xk1M0G9Y_BR_JiLVmCFtdC4,34319
16
+ supervaizer/server.py,sha256=cXwB2XfIBQJ6zFaUde4OTCPgHpb_tpsUy9cRkkXqA-Q,20805
17
+ supervaizer/server_utils.py,sha256=FMglpADQBJynkR2v-pfwANu6obsaPvR9j0BQc5Otpac,1590
18
+ supervaizer/storage.py,sha256=WLX8ggwt1AGF07DrfD1K6PyP2-N45c_Ep4CL0iPLVbI,15332
19
+ supervaizer/telemetry.py,sha256=XSYw8ZwoY8W6C7mhwHU67t7trJzWd7CBkkSNdsDT_HA,2596
20
+ supervaizer/admin/routes.py,sha256=r9hucWtNiTGQHgv9DsRkVpwnLbyLFaqrbse1orl-oTA,45627
21
+ supervaizer/admin/static/js/job-start-form.js,sha256=s--AGVYzgc9mE20POYeM0BNm0Wy41aBZVv99tc0cSPU,11938
22
+ supervaizer/admin/templates/agent_detail.html,sha256=DFOGfjuQNC39FOLYUW_jD0A01WpBY1umatGCslyJ0_c,7581
23
+ supervaizer/admin/templates/agents.html,sha256=orB_z1iMFE2MKhFm9XejwZjmzMC1PVT69oB-F9YZPHQ,12678
24
+ supervaizer/admin/templates/agents_grid.html,sha256=Hqgmgc4RhtnR-resuMZ8rj4uPJl6mHBOBTtZ5rLG90A,6106
25
+ supervaizer/admin/templates/base.html,sha256=ZGS-6IxGRYK41E5Jp3MVrGSwCugg8AVHtW21kKCBDvo,10405
26
+ supervaizer/admin/templates/case_detail.html,sha256=cJ4TUJI3ix3a-veb4g0Tp0AY-uJr0SducK70MZPFsZQ,13848
27
+ supervaizer/admin/templates/cases_list.html,sha256=UV4SfULzxNiOpG8aNddablpwf6hVNpRbAc6dgTmp6_E,9324
28
+ supervaizer/admin/templates/cases_table.html,sha256=VyL5mEF003FTNHym1UYBD8JkvhA9wR328ciTKNKxdb8,6619
29
+ supervaizer/admin/templates/console.html,sha256=tLGGf8vHjGK77Il6SYlgparoU_xz3nbvNpGVQRkVNCc,13966
30
+ supervaizer/admin/templates/dashboard.html,sha256=3Pu5bR78QUcPNp5MyXkyibfp-wxYdJyyf77v3O_f_hU,7873
31
+ supervaizer/admin/templates/job_detail.html,sha256=LDTMWLURyVCp7SMTxQ4M8AFqNpbbUVUx253negp9JNA,10790
32
+ supervaizer/admin/templates/job_start_test.html,sha256=eAogAit0JfuMU4N5YR7N03w0nD_Bi9mtiX8uJ7dHLPg,4270
33
+ supervaizer/admin/templates/jobs_list.html,sha256=VJ2VYe62dHXvjQQgUAVyKcn58rO5919UuP3VKgxLVhM,9136
34
+ supervaizer/admin/templates/jobs_table.html,sha256=BCOI_7QlxJ5XOra7WKou48a2lNwQYASCMFTtgzHNotw,5974
35
+ supervaizer/admin/templates/navigation.html,sha256=Ci_CMLqBuIKRt3JCFtn9Vjz1AAkqC75WMT6IQUiByFI,11724
36
+ supervaizer/admin/templates/recent_activity.html,sha256=hL06GXF1a-C_tkj3pRLrDTTDqG0KplcWMZFengFMuEc,4843
37
+ supervaizer/admin/templates/server.html,sha256=m3qIQsEojogXQKTSD6ljKj4_lrwaLJTpTbMpfnWZHxU,5650
38
+ supervaizer/admin/templates/server_status_cards.html,sha256=yJ36hkfgQpscYkiaodFDQPnmJWeb2W7gey09Z3T6JsY,7882
39
+ supervaizer/admin/templates/supervaize_instructions.html,sha256=LTLla1xgIeLpFf7bond_lxH5qdQQ2ak52Fd7hqChi1I,10225
40
+ supervaizer/deploy/__init__.py,sha256=DvngGQu8tS_Yz5FU4kKCvPpod11IGCtZWkUNeB5aVHI,557
41
+ supervaizer/deploy/cli.py,sha256=SeG2rIT5cKl-I5s4qvpLLl9OXxmzelqKRDKcfH1GsSM,10183
42
+ supervaizer/deploy/docker.py,sha256=FLMKHOnbnjMFTcULdRdgwKJwT-q8JtVwbN1iSemh21w,13810
43
+ supervaizer/deploy/driver_factory.py,sha256=Qm6DYVUfV3mlRHUglk5YlslGg6JYZ754uKeoiyxXw10,1487
44
+ supervaizer/deploy/health.py,sha256=vh4SMOxy43QXi1fanQjWfWqoGTy_z1VXwwfy4Fq2bHg,13764
45
+ supervaizer/deploy/state.py,sha256=DOpHOoU3IuaI2StE6G0LqzA1HiSDiqz2WDu2xexOYvc,7734
46
+ supervaizer/deploy/utils.py,sha256=YkhMz1bniTm0v3G4xpjMDgPr-n4keekz6wVesSRvTnU,1722
47
+ supervaizer/deploy/commands/__init__.py,sha256=uhdQpJ2Hly2YkkSBXKvGy77eyU0tIhNWD59C1x_6DPQ,365
48
+ supervaizer/deploy/commands/clean.py,sha256=zm76hmGTSSFAZdcQhVvn71secT4sE5IQqBM0zTDYC_g,9588
49
+ supervaizer/deploy/commands/down.py,sha256=Vo2Dw71BiTGSMCsjWNoq_oB_oecdV4oDnQ2LwIrv7oo,3929
50
+ supervaizer/deploy/commands/local.py,sha256=Ds2ECuyPeumA-G0OSoQmN0VM8iZ4CNqacWMSzy0r30k,16229
51
+ supervaizer/deploy/commands/plan.py,sha256=TjtEFGWlQrgyWvT4B7Ly8097jM--nQnkYCLaO65eNq0,5260
52
+ supervaizer/deploy/commands/status.py,sha256=sgHg0J8qJIuNYaCTlkMUggJ9Q4Cq1W5N-EvZXG9Iif0,5816
53
+ supervaizer/deploy/commands/up.py,sha256=5jmNB-n-TqLMVYRgs6KZ2VCt7DKGDwFukwzShtW3o2s,9292
54
+ supervaizer/deploy/drivers/__init__.py,sha256=NOHsmNYea7ARfuAhbuP4CC87BtMfKKDyC-Uz5sh2PHI,974
55
+ supervaizer/deploy/drivers/aws_app_runner.py,sha256=rABJOyjUSJUKFCOTWV92SNLaJK4oKpEmaljHcnQO3G0,22170
56
+ supervaizer/deploy/drivers/base.py,sha256=2MPsw6tgXBILCeHnYXuZtBYFQriwy41Iib8iQPLbDFQ,5267
57
+ supervaizer/deploy/drivers/cloud_run.py,sha256=wge26Egt0Qgbmi51Ttg_SZfGhDcwG_2UBb80pLUVHXQ,19912
58
+ supervaizer/deploy/drivers/do_app_platform.py,sha256=yWzJG4Y6Pn8BlX-plWB6kwbEKuV49P82ivc5Ovm7v1k,17328
59
+ supervaizer/deploy/templates/Dockerfile.template,sha256=VmR_znpKy0gR5aG1pIsZNxnNol65GSm79Fd5rFMzYf4,1261
60
+ supervaizer/deploy/templates/debug_env.py,sha256=WFlxfiCAlkxM1NybNvtmmG5zJnoSvjW9L8ATVjrg26E,2246
61
+ supervaizer/deploy/templates/docker-compose.yml.template,sha256=ZcW8WyhmqMElaxBpokuZG12n0tFJL8BY7k7Tvdz6tdw,1100
62
+ supervaizer/deploy/templates/dockerignore.template,sha256=bYFRn6QGsjtRDH-Y7vzWk3-u3jIp90FajV2Ed94ah5M,515
63
+ supervaizer/deploy/templates/entrypoint.sh,sha256=z079VUotu6DJX92fJiBB3eVwCEgcP6B9D9Fvwv_FL9w,463
64
+ supervaizer/examples/controller_template.py,sha256=gAmA3GnDTdYkDk3NpVe-6Adbsl4Oxs-iZKN6mrO3WEg,6419
65
+ supervaizer/protocol/__init__.py,sha256=00GHbUsLNsf0a1rQrUPpVN2Uy-7rDz72Ps6TUVD91tE,389
66
+ supervaizer/protocol/a2a/__init__.py,sha256=1ACfPGLzS6XdZPiFxn1nVamvbasqtJJ7U1BBbSmT-nI,625
67
+ supervaizer/protocol/a2a/model.py,sha256=sWzatlA_fcva_fdtM8Yh4cioRq0KbwV5AXpNCnsOtQo,7198
68
+ supervaizer/protocol/a2a/routes.py,sha256=rkQTNBD1NTYimKCb8iOk4bVf9ldDP1LqHfOsyhRNufw,3937
69
+ supervaizer/utils/__init__.py,sha256=fd0NFwN_cen3QPms2SOnuz4jcetay3f_31dit2As7EA,458
70
+ supervaizer/utils/version_check.py,sha256=-tsOURpHVh0LNTbpQsyJDJENKszC-NzXDSO_EToEQPE,1893
71
+ supervaizer/py.typed,sha256=bHhvLx7c6MqrzXVPbdK3qAOcSxzp4wDtTx4QifMC2EY,74
72
+ supervaizer-0.10.5.dist-info/METADATA,sha256=PanDorKt110d-c25DnRY995GBEp0upFeCAELBXOL1BE,12647
73
+ supervaizer-0.10.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
74
+ supervaizer-0.10.5.dist-info/entry_points.txt,sha256=vL_IBR_AeEI2u2-6YL4PY9k2Mar4-gprG8-UxERWjmg,52
75
+ supervaizer-0.10.5.dist-info/licenses/LICENSE.md,sha256=dmdnt1vfpxNPr8Lt0BnxKE5uzUwK3CWTthTUStgOXjY,15327
76
+ supervaizer-0.10.5.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ supervaizer = supervaizer.cli:app