anyscale 0.26.43__py3-none-any.whl → 0.26.45__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 (41) hide show
  1. anyscale/_private/anyscale_client/common.py +1 -1
  2. anyscale/_private/docgen/__main__.py +2 -0
  3. anyscale/_private/docgen/models.md +2 -2
  4. anyscale/_private/workload/workload_sdk.py +6 -0
  5. anyscale/client/README.md +9 -0
  6. anyscale/client/openapi_client/__init__.py +7 -0
  7. anyscale/client/openapi_client/api/default_api.py +238 -5
  8. anyscale/client/openapi_client/models/__init__.py +7 -0
  9. anyscale/client/openapi_client/models/baseimagesenum.py +68 -1
  10. anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py +31 -3
  11. anyscale/client/openapi_client/models/describe_machine_pool_requests_filters.py +150 -0
  12. anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py +19 -19
  13. anyscale/client/openapi_client/models/describe_machine_pool_workloads_filters.py +150 -0
  14. anyscale/client/openapi_client/models/describe_machine_pool_workloads_request.py +151 -0
  15. anyscale/client/openapi_client/models/file_storage.py +33 -5
  16. anyscale/client/openapi_client/models/plan_status.py +123 -0
  17. anyscale/client/openapi_client/models/supportedbaseimagesenum.py +68 -1
  18. anyscale/client/openapi_client/models/workload_machine_info.py +210 -0
  19. anyscale/client/openapi_client/models/workload_state_info.py +295 -0
  20. anyscale/client/openapi_client/models/workloadstateinfo_list_response.py +147 -0
  21. anyscale/commands/cloud_commands.py +1 -0
  22. anyscale/commands/compute_config_commands.py +10 -3
  23. anyscale/compute_config/__init__.py +16 -0
  24. anyscale/compute_config/_private/compute_config_sdk.py +172 -60
  25. anyscale/compute_config/commands.py +66 -1
  26. anyscale/compute_config/models.py +160 -3
  27. anyscale/conf.py +1 -1
  28. anyscale/controllers/cloud_controller.py +141 -3
  29. anyscale/job/_private/job_sdk.py +22 -0
  30. anyscale/sdk/anyscale_client/models/baseimagesenum.py +68 -1
  31. anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +68 -1
  32. anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
  33. anyscale/telemetry.py +36 -44
  34. anyscale/version.py +1 -1
  35. {anyscale-0.26.43.dist-info → anyscale-0.26.45.dist-info}/METADATA +4 -3
  36. {anyscale-0.26.43.dist-info → anyscale-0.26.45.dist-info}/RECORD +41 -34
  37. {anyscale-0.26.43.dist-info → anyscale-0.26.45.dist-info}/LICENSE +0 -0
  38. {anyscale-0.26.43.dist-info → anyscale-0.26.45.dist-info}/NOTICE +0 -0
  39. {anyscale-0.26.43.dist-info → anyscale-0.26.45.dist-info}/WHEEL +0 -0
  40. {anyscale-0.26.43.dist-info → anyscale-0.26.45.dist-info}/entry_points.txt +0 -0
  41. {anyscale-0.26.43.dist-info → anyscale-0.26.45.dist-info}/top_level.txt +0 -0
@@ -55,7 +55,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
55
55
  # Maybe just make it part of the release process to update it, or fetch the
56
56
  # default builds and get the latest one. The best thing to do is probably
57
57
  # to populate this in the backend.
58
- DEFAULT_RAY_VERSION = "2.47.1" # RAY_RELEASE_UPDATE: update to latest version.
58
+ DEFAULT_RAY_VERSION = "2.48.0" # RAY_RELEASE_UPDATE: update to latest version.
59
59
  DEFAULT_PYTHON_VERSION = "py311"
60
60
  RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
61
61
 
@@ -46,6 +46,7 @@ from anyscale.compute_config.models import (
46
46
  ComputeConfigVersion,
47
47
  HeadNodeConfig,
48
48
  MarketType,
49
+ MultiDeploymentComputeConfig,
49
50
  WorkerNodeGroupConfig,
50
51
  )
51
52
  from anyscale.image.models import ImageBuild, ImageBuildStatus
@@ -318,6 +319,7 @@ ALL_MODULES = [
318
319
  WorkerNodeGroupConfig,
319
320
  MarketType,
320
321
  CloudDeployment,
322
+ MultiDeploymentComputeConfig,
321
323
  ComputeConfigVersion,
322
324
  ],
323
325
  legacy_sdk_commands={