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.
Files changed (150) hide show
  1. agents/__init__.py +0 -0
  2. agents/broker/__init__.py +0 -0
  3. agents/broker/agent.py +1086 -0
  4. agents/broker/billing.py +154 -0
  5. agents/broker/migration.py +961 -0
  6. agents/broker/provider_startup.py +125 -0
  7. agents/broker/providers/__init__.py +77 -0
  8. agents/broker/providers/aws.py +914 -0
  9. agents/broker/providers/aws_capacity.py +186 -0
  10. agents/broker/providers/azure.py +247 -0
  11. agents/broker/providers/base.py +32 -0
  12. agents/broker/providers/coreweave.py +127 -0
  13. agents/broker/providers/crusoe.py +214 -0
  14. agents/broker/providers/gcp.py +626 -0
  15. agents/broker/providers/gcp_capacity.py +177 -0
  16. agents/broker/providers/hyperstack.py +156 -0
  17. agents/broker/providers/lambda_labs.py +202 -0
  18. agents/broker/providers/nebius.py +189 -0
  19. agents/broker/providers/region_planner.py +134 -0
  20. agents/broker/providers/runpod.py +259 -0
  21. agents/broker/providers/vast_ai.py +282 -0
  22. agents/broker/providers/voltage_park.py +130 -0
  23. agents/broker/ssh.py +453 -0
  24. agents/broker/startup_scripts.py +1054 -0
  25. agents/broker/warm_pool.py +351 -0
  26. agents/finops/__init__.py +0 -0
  27. agents/finops/agent.py +267 -0
  28. agents/namespace/__init__.py +16 -0
  29. agents/namespace/agent.py +308 -0
  30. agents/namespace/ingestion.py +208 -0
  31. agents/namespace/inject.py +74 -0
  32. agents/namespace/mount.py +177 -0
  33. agents/namespace/prefetch.py +307 -0
  34. agents/orchestration/__init__.py +0 -0
  35. agents/orchestration/agent.py +882 -0
  36. agents/orchestration/decisions.py +507 -0
  37. agents/orchestration/egress.py +409 -0
  38. agents/orchestration/prompts.py +65 -0
  39. agents/pricing/__init__.py +0 -0
  40. agents/pricing/agent.py +741 -0
  41. agents/pricing/pollers.py +507 -0
  42. agents/tester/__init__.py +0 -0
  43. agents/tester/agent.py +360 -0
  44. agents/vault/__init__.py +0 -0
  45. agents/vault/agent.py +605 -0
  46. agents/vault/delta.py +353 -0
  47. agents/vault/multipart.py +160 -0
  48. agents/vault/r2.py +848 -0
  49. agents/watchdog/__init__.py +0 -0
  50. agents/watchdog/agent.py +715 -0
  51. agents/watchdog/signals.py +240 -0
  52. api/__init__.py +1 -0
  53. api/admin_dashboard.py +685 -0
  54. api/admin_routes.py +686 -0
  55. api/auth.py +305 -0
  56. api/bill_reconcile.py +372 -0
  57. api/credentials.py +152 -0
  58. api/credits.py +517 -0
  59. api/db.py +319 -0
  60. api/email.py +226 -0
  61. api/feedback_routes.py +195 -0
  62. api/flags.py +75 -0
  63. api/fraud.py +115 -0
  64. api/invite_routes.py +553 -0
  65. api/job_routes.py +1105 -0
  66. api/job_worker.py +1817 -0
  67. api/main.py +483 -0
  68. api/models.py +131 -0
  69. api/pricing_routes.py +597 -0
  70. api/smoke_routes.py +156 -0
  71. api/stripe_routes.py +206 -0
  72. api/unified_queue.py +247 -0
  73. api/unified_queue_persist.py +222 -0
  74. cli/__init__.py +0 -0
  75. cli/_dataset.py +207 -0
  76. cli/_preflight.py +314 -0
  77. cli/_remote.py +1105 -0
  78. cli/_subprocess.py +233 -0
  79. cli/admin_cmd.py +219 -0
  80. cli/checkpoint_template.py +600 -0
  81. cli/checkpoint_template_deepspeed.py +228 -0
  82. cli/checkpoint_template_jax.py +260 -0
  83. cli/connect.py +796 -0
  84. cli/crash_reporter.py +139 -0
  85. cli/data.py +202 -0
  86. cli/delete.py +216 -0
  87. cli/download.py +156 -0
  88. cli/estimate.py +108 -0
  89. cli/examples.py +298 -0
  90. cli/feedback.py +231 -0
  91. cli/inject.py +731 -0
  92. cli/login_cmd.py +132 -0
  93. cli/main.py +794 -0
  94. cli/migrate_keys.py +123 -0
  95. cli/notify.py +130 -0
  96. cli/ps.py +135 -0
  97. cli/remote_providers.py +142 -0
  98. cli/restart.py +293 -0
  99. cli/run.py +503 -0
  100. cli/signup.py +134 -0
  101. cli/smoke_history.py +150 -0
  102. cli/sync.py +939 -0
  103. shared/__init__.py +0 -0
  104. shared/api_utils.py +34 -0
  105. shared/bill_auditor.py +154 -0
  106. shared/compute_tiers.py +198 -0
  107. shared/config.py +424 -0
  108. shared/credential_vault.py +140 -0
  109. shared/credits.py +331 -0
  110. shared/data_loader.py +462 -0
  111. shared/email.py +184 -0
  112. shared/env_utils.py +15 -0
  113. shared/failure_codes.py +93 -0
  114. shared/gpu_resolver.py +372 -0
  115. shared/idempotency.py +69 -0
  116. shared/invoice.py +500 -0
  117. shared/job_logger.py +191 -0
  118. shared/job_run_logger.py +446 -0
  119. shared/logging_utils.py +17 -0
  120. shared/manifest.py +126 -0
  121. shared/models.py +349 -0
  122. shared/models_additions.py +114 -0
  123. shared/price_guard.py +449 -0
  124. shared/provider_billing.py +171 -0
  125. shared/provider_capacity.py +357 -0
  126. shared/queue.py +404 -0
  127. shared/r2_credentials.py +253 -0
  128. shared/r2_utils.py +23 -0
  129. shared/recovery_tiers.py +81 -0
  130. shared/retry.py +169 -0
  131. shared/script_upload.py +219 -0
  132. shared/security.py +417 -0
  133. shared/spend.py +316 -0
  134. shared/storage_billing.py +292 -0
  135. shared/sts.py +180 -0
  136. shared/suggestions.py +105 -0
  137. shared/telemetry.py +320 -0
  138. shared/usage_tracker.py +224 -0
  139. vaultlayer/__init__.py +1 -0
  140. vaultlayer/_resume_hook.py +192 -0
  141. vaultlayer/_resume_state.py +366 -0
  142. vaultlayer/_resume_torch.py +759 -0
  143. vaultlayer-0.1.0.dist-info/METADATA +258 -0
  144. vaultlayer-0.1.0.dist-info/RECORD +150 -0
  145. vaultlayer-0.1.0.dist-info/WHEEL +5 -0
  146. vaultlayer-0.1.0.dist-info/entry_points.txt +2 -0
  147. vaultlayer-0.1.0.dist-info/top_level.txt +6 -0
  148. workers/__init__.py +1 -0
  149. workers/claude_bug_fixer.py +727 -0
  150. workers/feedback_worker.py +70 -0
agents/__init__.py ADDED
File without changes
File without changes