vaultlayer 0.1.0__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.
- agents/__init__.py +0 -0
- agents/broker/__init__.py +0 -0
- agents/broker/agent.py +1086 -0
- agents/broker/billing.py +154 -0
- agents/broker/migration.py +961 -0
- agents/broker/provider_startup.py +125 -0
- agents/broker/providers/__init__.py +77 -0
- agents/broker/providers/aws.py +914 -0
- agents/broker/providers/aws_capacity.py +186 -0
- agents/broker/providers/azure.py +247 -0
- agents/broker/providers/base.py +32 -0
- agents/broker/providers/coreweave.py +127 -0
- agents/broker/providers/crusoe.py +214 -0
- agents/broker/providers/gcp.py +626 -0
- agents/broker/providers/gcp_capacity.py +177 -0
- agents/broker/providers/hyperstack.py +156 -0
- agents/broker/providers/lambda_labs.py +202 -0
- agents/broker/providers/nebius.py +189 -0
- agents/broker/providers/region_planner.py +134 -0
- agents/broker/providers/runpod.py +259 -0
- agents/broker/providers/vast_ai.py +282 -0
- agents/broker/providers/voltage_park.py +130 -0
- agents/broker/ssh.py +453 -0
- agents/broker/startup_scripts.py +1054 -0
- agents/broker/warm_pool.py +351 -0
- agents/finops/__init__.py +0 -0
- agents/finops/agent.py +267 -0
- agents/namespace/__init__.py +16 -0
- agents/namespace/agent.py +308 -0
- agents/namespace/ingestion.py +208 -0
- agents/namespace/inject.py +74 -0
- agents/namespace/mount.py +177 -0
- agents/namespace/prefetch.py +307 -0
- agents/orchestration/__init__.py +0 -0
- agents/orchestration/agent.py +882 -0
- agents/orchestration/decisions.py +507 -0
- agents/orchestration/egress.py +409 -0
- agents/orchestration/prompts.py +65 -0
- agents/pricing/__init__.py +0 -0
- agents/pricing/agent.py +741 -0
- agents/pricing/pollers.py +507 -0
- agents/tester/__init__.py +0 -0
- agents/tester/agent.py +360 -0
- agents/vault/__init__.py +0 -0
- agents/vault/agent.py +605 -0
- agents/vault/delta.py +353 -0
- agents/vault/multipart.py +160 -0
- agents/vault/r2.py +848 -0
- agents/watchdog/__init__.py +0 -0
- agents/watchdog/agent.py +715 -0
- agents/watchdog/signals.py +240 -0
- api/__init__.py +1 -0
- api/admin_dashboard.py +685 -0
- api/admin_routes.py +686 -0
- api/auth.py +305 -0
- api/bill_reconcile.py +372 -0
- api/credentials.py +152 -0
- api/credits.py +517 -0
- api/db.py +319 -0
- api/email.py +226 -0
- api/feedback_routes.py +195 -0
- api/flags.py +75 -0
- api/fraud.py +115 -0
- api/invite_routes.py +553 -0
- api/job_routes.py +1105 -0
- api/job_worker.py +1817 -0
- api/main.py +483 -0
- api/models.py +131 -0
- api/pricing_routes.py +597 -0
- api/smoke_routes.py +156 -0
- api/stripe_routes.py +206 -0
- api/unified_queue.py +247 -0
- api/unified_queue_persist.py +222 -0
- cli/__init__.py +0 -0
- cli/_dataset.py +207 -0
- cli/_preflight.py +314 -0
- cli/_remote.py +1105 -0
- cli/_subprocess.py +233 -0
- cli/admin_cmd.py +219 -0
- cli/checkpoint_template.py +600 -0
- cli/checkpoint_template_deepspeed.py +228 -0
- cli/checkpoint_template_jax.py +260 -0
- cli/connect.py +796 -0
- cli/crash_reporter.py +139 -0
- cli/data.py +202 -0
- cli/delete.py +216 -0
- cli/download.py +156 -0
- cli/estimate.py +108 -0
- cli/examples.py +298 -0
- cli/feedback.py +231 -0
- cli/inject.py +731 -0
- cli/login_cmd.py +132 -0
- cli/main.py +794 -0
- cli/migrate_keys.py +123 -0
- cli/notify.py +130 -0
- cli/ps.py +135 -0
- cli/remote_providers.py +142 -0
- cli/restart.py +293 -0
- cli/run.py +503 -0
- cli/signup.py +134 -0
- cli/smoke_history.py +150 -0
- cli/sync.py +939 -0
- shared/__init__.py +0 -0
- shared/api_utils.py +34 -0
- shared/bill_auditor.py +154 -0
- shared/compute_tiers.py +198 -0
- shared/config.py +424 -0
- shared/credential_vault.py +140 -0
- shared/credits.py +331 -0
- shared/data_loader.py +462 -0
- shared/email.py +184 -0
- shared/env_utils.py +15 -0
- shared/failure_codes.py +93 -0
- shared/gpu_resolver.py +372 -0
- shared/idempotency.py +69 -0
- shared/invoice.py +500 -0
- shared/job_logger.py +191 -0
- shared/job_run_logger.py +446 -0
- shared/logging_utils.py +17 -0
- shared/manifest.py +126 -0
- shared/models.py +349 -0
- shared/models_additions.py +114 -0
- shared/price_guard.py +449 -0
- shared/provider_billing.py +171 -0
- shared/provider_capacity.py +357 -0
- shared/queue.py +404 -0
- shared/r2_credentials.py +253 -0
- shared/r2_utils.py +23 -0
- shared/recovery_tiers.py +81 -0
- shared/retry.py +169 -0
- shared/script_upload.py +219 -0
- shared/security.py +417 -0
- shared/spend.py +316 -0
- shared/storage_billing.py +292 -0
- shared/sts.py +180 -0
- shared/suggestions.py +105 -0
- shared/telemetry.py +320 -0
- shared/usage_tracker.py +224 -0
- vaultlayer/__init__.py +1 -0
- vaultlayer/_resume_hook.py +192 -0
- vaultlayer/_resume_state.py +366 -0
- vaultlayer/_resume_torch.py +759 -0
- vaultlayer-0.1.0.dist-info/METADATA +258 -0
- vaultlayer-0.1.0.dist-info/RECORD +150 -0
- vaultlayer-0.1.0.dist-info/WHEEL +5 -0
- vaultlayer-0.1.0.dist-info/entry_points.txt +2 -0
- vaultlayer-0.1.0.dist-info/top_level.txt +6 -0
- workers/__init__.py +1 -0
- workers/claude_bug_fixer.py +727 -0
- workers/feedback_worker.py +70 -0
agents/__init__.py
ADDED
|
File without changes
|
|
File without changes
|