skypilot-nightly 1.0.0.dev20251021__py3-none-any.whl → 1.0.0.dev20251023__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.
Potentially problematic release.
This version of skypilot-nightly might be problematic. Click here for more details.
- sky/__init__.py +2 -2
- sky/adaptors/kubernetes.py +5 -2
- sky/client/cli/command.py +118 -30
- sky/client/cli/table_utils.py +14 -8
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/_next/static/CJlKj9Z9fXGlQCmH4EpLX/_buildManifest.js +1 -0
- sky/dashboard/out/_next/static/chunks/1141-ec6f902ffb865853.js +11 -0
- sky/dashboard/out/_next/static/chunks/1871-165dc0e1553d9822.js +6 -0
- sky/dashboard/out/_next/static/chunks/2755.1ffbda43f960962b.js +26 -0
- sky/dashboard/out/_next/static/chunks/3015-2dcace420c8939f4.js +1 -0
- sky/dashboard/out/_next/static/chunks/{3294.1fafbf42b3bcebff.js → 3294.27318ad826343ea6.js} +1 -1
- sky/dashboard/out/_next/static/chunks/{3785.a19328ba41517b8b.js → 3785.483a3dda2d52f26e.js} +1 -1
- sky/dashboard/out/_next/static/chunks/{1121-d0782b9251f0fcd3.js → 4282-d2f3ef2fbf78e347.js} +1 -1
- sky/dashboard/out/_next/static/chunks/{4725.10f7a9a5d3ea8208.js → 4725.a830b5c9e7867c92.js} +1 -1
- sky/dashboard/out/_next/static/chunks/6856-5c94d394259cdb6e.js +1 -0
- sky/dashboard/out/_next/static/chunks/8969-0389e2cb52412db3.js +1 -0
- sky/dashboard/out/_next/static/chunks/9360.07d78b8552bc9d17.js +31 -0
- sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/{[job]-8f058b0346db2aff.js → [job]-602eeead010ec1d6.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/clusters/{[cluster]-477555ab7c0b13d8.js → [cluster]-18b334dedbd9f6f2.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/{clusters-2f61f65487f6d8ff.js → clusters-57221ec2e4e01076.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/infra/{[context]-553b8b5cb65e100b.js → [context]-44ce535a0a0ad4ec.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/{infra-910a22500c50596f.js → infra-872e6a00165534f4.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/{jobs-a35a9dc3c5ccd657.js → jobs-0dc34cf9a8710a9f.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/{users-98d2ed979084162a.js → users-3a543725492fb896.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/{volumes-835d14ba94808f79.js → volumes-d2af9d22e87cc4ba.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/workspaces/{[name]-e8688c35c06f0ac5.js → [name]-9ad108cd67d16d96.js} +1 -1
- sky/dashboard/out/_next/static/chunks/pages/{workspaces-69c80d677d3c2949.js → workspaces-6fc994fa1ee6c6bf.js} +1 -1
- sky/dashboard/out/_next/static/chunks/webpack-434b7577d72c879b.js +1 -0
- sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
- sky/dashboard/out/clusters/[cluster].html +1 -1
- sky/dashboard/out/clusters.html +1 -1
- sky/dashboard/out/config.html +1 -1
- sky/dashboard/out/index.html +1 -1
- sky/dashboard/out/infra/[context].html +1 -1
- sky/dashboard/out/infra.html +1 -1
- sky/dashboard/out/jobs/[job].html +1 -1
- sky/dashboard/out/jobs/pools/[pool].html +1 -1
- sky/dashboard/out/jobs.html +1 -1
- sky/dashboard/out/users.html +1 -1
- sky/dashboard/out/volumes.html +1 -1
- sky/dashboard/out/workspace/new.html +1 -1
- sky/dashboard/out/workspaces/[name].html +1 -1
- sky/dashboard/out/workspaces.html +1 -1
- sky/global_user_state.py +117 -17
- sky/jobs/client/sdk.py +28 -9
- sky/jobs/client/sdk_async.py +9 -3
- sky/jobs/constants.py +1 -1
- sky/jobs/server/core.py +7 -3
- sky/jobs/server/server.py +11 -11
- sky/jobs/state.py +307 -55
- sky/jobs/utils.py +281 -166
- sky/schemas/api/responses.py +2 -0
- sky/schemas/db/skypilot_config/001_initial_schema.py +30 -0
- sky/serve/server/server.py +7 -7
- sky/server/auth/oauth2_proxy.py +2 -5
- sky/server/common.py +1 -13
- sky/server/requests/executor.py +20 -20
- sky/server/requests/payloads.py +3 -0
- sky/server/requests/requests.py +51 -25
- sky/server/requests/serializers/decoders.py +23 -10
- sky/server/requests/serializers/encoders.py +5 -4
- sky/server/rest.py +35 -1
- sky/server/server.py +34 -34
- sky/setup_files/alembic.ini +4 -0
- sky/skylet/log_lib.py +8 -1
- sky/skylet/services.py +5 -5
- sky/skylet/subprocess_daemon.py +103 -29
- sky/skypilot_config.py +87 -75
- sky/ssh_node_pools/server.py +4 -4
- sky/users/permission.py +4 -0
- sky/utils/db/db_utils.py +32 -3
- sky/utils/db/migration_utils.py +7 -3
- sky/utils/subprocess_utils.py +13 -1
- sky/volumes/server/server.py +3 -3
- sky/workspaces/server.py +6 -6
- {skypilot_nightly-1.0.0.dev20251021.dist-info → skypilot_nightly-1.0.0.dev20251023.dist-info}/METADATA +36 -35
- {skypilot_nightly-1.0.0.dev20251021.dist-info → skypilot_nightly-1.0.0.dev20251023.dist-info}/RECORD +84 -83
- sky/dashboard/out/_next/static/chunks/1141-3b40c39626f99c89.js +0 -11
- sky/dashboard/out/_next/static/chunks/1871-49141c317f3a9020.js +0 -6
- sky/dashboard/out/_next/static/chunks/2755.97300e1362fe7c98.js +0 -26
- sky/dashboard/out/_next/static/chunks/3015-7e0e8f06bb2f881c.js +0 -1
- sky/dashboard/out/_next/static/chunks/6856-5fdc9b851a18acdb.js +0 -1
- sky/dashboard/out/_next/static/chunks/8969-66237729cdf9749e.js +0 -1
- sky/dashboard/out/_next/static/chunks/9360.71e83b2ddc844ec2.js +0 -31
- sky/dashboard/out/_next/static/chunks/webpack-66f23594d38c7f16.js +0 -1
- sky/dashboard/out/_next/static/jDc1PlRsl9Cc5FQUMLBu8/_buildManifest.js +0 -1
- /sky/dashboard/out/_next/static/{jDc1PlRsl9Cc5FQUMLBu8 → CJlKj9Z9fXGlQCmH4EpLX}/_ssgManifest.js +0 -0
- /sky/dashboard/out/_next/static/chunks/pages/jobs/{[job]-e5c9ce6a24fc0de4.js → [job]-8677af16befde039.js} +0 -0
- /sky/dashboard/out/_next/static/chunks/pages/jobs/pools/{[pool]-bc979970c247d8f3.js → [pool]-e020fd69dbe76cea.js} +0 -0
- {skypilot_nightly-1.0.0.dev20251021.dist-info → skypilot_nightly-1.0.0.dev20251023.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20251021.dist-info → skypilot_nightly-1.0.0.dev20251023.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20251021.dist-info → skypilot_nightly-1.0.0.dev20251023.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20251021.dist-info → skypilot_nightly-1.0.0.dev20251023.dist-info}/top_level.txt +0 -0
sky/workspaces/server.py
CHANGED
|
@@ -22,7 +22,7 @@ async def get(request: fastapi.Request) -> None:
|
|
|
22
22
|
} if auth_user else {}
|
|
23
23
|
request_body = payloads.RequestBody(**auth_user_env_vars_kwargs)
|
|
24
24
|
|
|
25
|
-
executor.
|
|
25
|
+
await executor.schedule_request_async(
|
|
26
26
|
request_id=request.state.request_id,
|
|
27
27
|
request_name='workspaces.get',
|
|
28
28
|
request_body=request_body,
|
|
@@ -35,7 +35,7 @@ async def get(request: fastapi.Request) -> None:
|
|
|
35
35
|
async def update(request: fastapi.Request,
|
|
36
36
|
update_workspace_body: payloads.UpdateWorkspaceBody) -> None:
|
|
37
37
|
"""Updates a specific workspace configuration."""
|
|
38
|
-
executor.
|
|
38
|
+
await executor.schedule_request_async(
|
|
39
39
|
request_id=request.state.request_id,
|
|
40
40
|
request_name='workspaces.update',
|
|
41
41
|
request_body=update_workspace_body,
|
|
@@ -48,7 +48,7 @@ async def update(request: fastapi.Request,
|
|
|
48
48
|
async def create(request: fastapi.Request,
|
|
49
49
|
create_workspace_body: payloads.CreateWorkspaceBody) -> None:
|
|
50
50
|
"""Creates a new workspace configuration."""
|
|
51
|
-
executor.
|
|
51
|
+
await executor.schedule_request_async(
|
|
52
52
|
request_id=request.state.request_id,
|
|
53
53
|
request_name='workspaces.create',
|
|
54
54
|
request_body=create_workspace_body,
|
|
@@ -61,7 +61,7 @@ async def create(request: fastapi.Request,
|
|
|
61
61
|
async def delete(request: fastapi.Request,
|
|
62
62
|
delete_workspace_body: payloads.DeleteWorkspaceBody) -> None:
|
|
63
63
|
"""Deletes a workspace configuration."""
|
|
64
|
-
executor.
|
|
64
|
+
await executor.schedule_request_async(
|
|
65
65
|
request_id=request.state.request_id,
|
|
66
66
|
request_name='workspaces.delete',
|
|
67
67
|
request_body=delete_workspace_body,
|
|
@@ -78,7 +78,7 @@ async def get_config(request: fastapi.Request) -> None:
|
|
|
78
78
|
'env_vars': auth_user.to_env_vars()
|
|
79
79
|
} if auth_user else {}
|
|
80
80
|
get_config_body = payloads.GetConfigBody(**auth_user_env_vars_kwargs)
|
|
81
|
-
executor.
|
|
81
|
+
await executor.schedule_request_async(
|
|
82
82
|
request_id=request.state.request_id,
|
|
83
83
|
request_name='workspaces.get_config',
|
|
84
84
|
request_body=get_config_body,
|
|
@@ -91,7 +91,7 @@ async def get_config(request: fastapi.Request) -> None:
|
|
|
91
91
|
async def update_config(request: fastapi.Request,
|
|
92
92
|
update_config_body: payloads.UpdateConfigBody) -> None:
|
|
93
93
|
"""Updates the entire SkyPilot configuration."""
|
|
94
|
-
executor.
|
|
94
|
+
await executor.schedule_request_async(
|
|
95
95
|
request_id=request.state.request_id,
|
|
96
96
|
request_name='workspaces.update_config',
|
|
97
97
|
request_body=update_config_body,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: skypilot-nightly
|
|
3
|
-
Version: 1.0.0.
|
|
3
|
+
Version: 1.0.0.dev20251023
|
|
4
4
|
Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
|
|
5
5
|
Author: SkyPilot Team
|
|
6
6
|
License: Apache 2.0
|
|
@@ -371,50 +371,50 @@ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "shadeform"
|
|
|
371
371
|
Requires-Dist: aiosqlite; extra == "shadeform"
|
|
372
372
|
Requires-Dist: greenlet; extra == "shadeform"
|
|
373
373
|
Provides-Extra: all
|
|
374
|
-
Requires-Dist: pyjwt; extra == "all"
|
|
375
|
-
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
376
|
-
Requires-Dist: google-cloud-storage; extra == "all"
|
|
377
|
-
Requires-Dist: passlib; extra == "all"
|
|
378
374
|
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
379
|
-
Requires-Dist: docker; extra == "all"
|
|
380
|
-
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
381
|
-
Requires-Dist: anyio; extra == "all"
|
|
382
|
-
Requires-Dist: greenlet; extra == "all"
|
|
383
375
|
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
384
|
-
Requires-Dist:
|
|
385
|
-
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
386
|
-
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
387
|
-
Requires-Dist: python-dateutil; extra == "all"
|
|
388
|
-
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
389
|
-
Requires-Dist: aiosqlite; extra == "all"
|
|
390
|
-
Requires-Dist: ibm-vpc; extra == "all"
|
|
391
|
-
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
392
|
-
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
376
|
+
Requires-Dist: ray[default]>=2.6.1; extra == "all"
|
|
393
377
|
Requires-Dist: aiohttp; extra == "all"
|
|
394
|
-
Requires-Dist:
|
|
378
|
+
Requires-Dist: google-cloud-storage; extra == "all"
|
|
395
379
|
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
396
|
-
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
397
|
-
Requires-Dist: ray[default]>=2.6.1; extra == "all"
|
|
398
380
|
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
399
|
-
Requires-Dist: oci; extra == "all"
|
|
400
|
-
Requires-Dist: tomli; python_version < "3.11" and extra == "all"
|
|
401
381
|
Requires-Dist: msgraph-sdk; extra == "all"
|
|
402
|
-
Requires-Dist:
|
|
403
|
-
Requires-Dist: azure-
|
|
404
|
-
Requires-Dist: msrestazure; extra == "all"
|
|
405
|
-
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
406
|
-
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
407
|
-
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
408
|
-
Requires-Dist: ecsapi>=0.2.0; extra == "all"
|
|
382
|
+
Requires-Dist: azure-common; extra == "all"
|
|
383
|
+
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
409
384
|
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
385
|
+
Requires-Dist: websockets; extra == "all"
|
|
410
386
|
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
411
|
-
Requires-Dist:
|
|
412
|
-
Requires-Dist:
|
|
413
|
-
Requires-Dist:
|
|
387
|
+
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
388
|
+
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
389
|
+
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
390
|
+
Requires-Dist: aiosqlite; extra == "all"
|
|
391
|
+
Requires-Dist: ecsapi>=0.2.0; extra == "all"
|
|
392
|
+
Requires-Dist: passlib; extra == "all"
|
|
393
|
+
Requires-Dist: ibm-vpc; extra == "all"
|
|
414
394
|
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
415
|
-
Requires-Dist:
|
|
395
|
+
Requires-Dist: pyjwt; extra == "all"
|
|
396
|
+
Requires-Dist: casbin; extra == "all"
|
|
397
|
+
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
398
|
+
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
399
|
+
Requires-Dist: tomli; python_version < "3.11" and extra == "all"
|
|
400
|
+
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
401
|
+
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
402
|
+
Requires-Dist: greenlet; extra == "all"
|
|
403
|
+
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
416
404
|
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
417
|
-
Requires-Dist:
|
|
405
|
+
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
406
|
+
Requires-Dist: anyio; extra == "all"
|
|
407
|
+
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
408
|
+
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
409
|
+
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
410
|
+
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
411
|
+
Requires-Dist: python-dateutil; extra == "all"
|
|
412
|
+
Requires-Dist: msrestazure; extra == "all"
|
|
413
|
+
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
414
|
+
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
415
|
+
Requires-Dist: docker; extra == "all"
|
|
416
|
+
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
417
|
+
Requires-Dist: oci; extra == "all"
|
|
418
418
|
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
419
419
|
Provides-Extra: remote
|
|
420
420
|
Requires-Dist: grpcio>=1.63.0; extra == "remote"
|
|
@@ -479,6 +479,7 @@ Dynamic: summary
|
|
|
479
479
|
----
|
|
480
480
|
|
|
481
481
|
:fire: *News* :fire:
|
|
482
|
+
- [Jul 2025] Run **RL training for LLMs** with SkyRL on your Kubernetes or clouds: [**example**](./llm/skyrl/)
|
|
482
483
|
- [Oct 2025] Train and serve [Andrej Karpathy's](https://x.com/karpathy/status/1977755427569111362) **nanochat** - the best ChatGPT that $100 can buy: [**example**](./llm/nanochat)
|
|
483
484
|
- [Oct 2025] Run large-scale **LLM training with TorchTitan** on any AI infra: [**example**](./examples/training/torchtitan)
|
|
484
485
|
- [Sep 2025] Scaling AI infrastructure at Abridge - **10x faster development** with SkyPilot: [**blog**](https://blog.skypilot.co/abridge/)
|
{skypilot_nightly-1.0.0.dev20251021.dist-info → skypilot_nightly-1.0.0.dev20251023.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=lBKOuWBDNezEc4Xm5Ly__wTUcA93INCVNjwHuP1cwYw,6759
|
|
2
2
|
sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
|
|
3
3
|
sky/authentication.py,sha256=BK5Fkuk3EmS4DwCrxI_8a4SQHUNFYu9GztWSzPissSA,20123
|
|
4
4
|
sky/check.py,sha256=hBDTkiADC3HFfO6brZV819FVWcdOs3aiuhB6x6mY4Q4,29728
|
|
@@ -8,13 +8,13 @@ sky/core.py,sha256=VTHly9kJmwtmdiKwkrSrzuJ_8V8t-aI9weADd0SqDWA,58305
|
|
|
8
8
|
sky/dag.py,sha256=0ZpAEDXuIFo1SP7YJpF9vXiFxpRwqP8od-UXMg95td8,3929
|
|
9
9
|
sky/exceptions.py,sha256=DTQN5db2N6FntRRw0rRLyQG2q7HDvnylpvjkRF8wYBk,20830
|
|
10
10
|
sky/execution.py,sha256=klMjceOMCMDzyYczazrT-kiS6kGqfyBO_9KvlZzyTUw,35849
|
|
11
|
-
sky/global_user_state.py,sha256
|
|
11
|
+
sky/global_user_state.py,sha256=-47YAKQ_KwTfG9OnUO83HQ328cgyTz5hlgKIU2fk4o8,108180
|
|
12
12
|
sky/models.py,sha256=ZKisLai7vqUr6_BPev6Oziu5N23WLzTh9nRtHSlRchw,3999
|
|
13
13
|
sky/optimizer.py,sha256=iR57bL_8BeG6bh1sH3J6n6i65EBFjmyftezYM4nnDZA,64150
|
|
14
14
|
sky/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
sky/resources.py,sha256=jojeuFmMEi-_7MJtR1i8SoEoUG89FrFHoZk1NQx7DzA,107795
|
|
16
16
|
sky/sky_logging.py,sha256=afm0zBNQ_Aa4AFlED2nDIlOkEsCTeyvHRx7FsfIsoLg,9618
|
|
17
|
-
sky/skypilot_config.py,sha256=
|
|
17
|
+
sky/skypilot_config.py,sha256=vGcVxghXdV0o02FhgCMB7SyH-TPrcMPmMQdXWFVPsNQ,37601
|
|
18
18
|
sky/task.py,sha256=KcrfY3Rp1q3LzfMYJSPbRXpxJ7Ol9E9UBq56EixOQfQ,78707
|
|
19
19
|
sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
sky/adaptors/aws.py,sha256=4caUTO5nxZQyDVPyQdoPljaF-Lz_Fa6NEnu3FfmLZd4,8633
|
|
@@ -27,7 +27,7 @@ sky/adaptors/docker.py,sha256=_kzpZ0fkWHqqQAVVl0llTsCE31KYz3Sjn8psTBQHVkA,468
|
|
|
27
27
|
sky/adaptors/gcp.py,sha256=oEb9jClEtApw6PQnxdxDYxOCYsedvM3aiko1EW1FDVo,3501
|
|
28
28
|
sky/adaptors/hyperbolic.py,sha256=iyHDmtLFVTK9QajpAmObk0XO2OZnnO_1LbvDffPpt68,245
|
|
29
29
|
sky/adaptors/ibm.py,sha256=7YbHrWbYcZsJDgxMBNZr1yBI03mjs_C3pnCTCz-MNtQ,5068
|
|
30
|
-
sky/adaptors/kubernetes.py,sha256=
|
|
30
|
+
sky/adaptors/kubernetes.py,sha256=vuhr11npHjUj69sgt5pu8pRmheGHaYXZPBtQvP1ga1Y,12654
|
|
31
31
|
sky/adaptors/nebius.py,sha256=i2FcELjztleXEjs554dbtiJ9hO_0tsF1N_GrlWLXE0Y,10722
|
|
32
32
|
sky/adaptors/oci.py,sha256=xJt6J9xBSFIENa6FwEt1V1sZE8puAZ_vPEoGlyQACPs,2839
|
|
33
33
|
sky/adaptors/primeintellect.py,sha256=rsdJpfJy7aYWL4fDpWUStuICdNF8POZckvndWWCE62E,37
|
|
@@ -90,10 +90,10 @@ sky/client/sdk.py,sha256=HX9UGKggoV-qRYIl-iMhCwg5pTZF01SxUqikdxyEnwk,109351
|
|
|
90
90
|
sky/client/sdk_async.py,sha256=8G_E9Dn4d80rV-wxRH4zZUXZGAm6rLw3C8PI07fXwwQ,31106
|
|
91
91
|
sky/client/service_account_auth.py,sha256=5jXk0G6ufuW-SHCO7BEHQeTO0_2a8KfFmA63auXFRj4,1529
|
|
92
92
|
sky/client/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
-
sky/client/cli/command.py,sha256=
|
|
93
|
+
sky/client/cli/command.py,sha256=589zdYOFbcQtCmk9hzBhyu6hYZQmWoNIPaXDzyF9XTg,257227
|
|
94
94
|
sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wqfbjv5E,3370
|
|
95
95
|
sky/client/cli/flags.py,sha256=hwQ4Y9lwTbfqYoINWUTqRMGBoXxBy4_E5hqtXbBcEeg,12219
|
|
96
|
-
sky/client/cli/table_utils.py,sha256=
|
|
96
|
+
sky/client/cli/table_utils.py,sha256=CQFFD6cAL3ia8CNuNBmnFz1Ed2VuecjP3nkR2HQ0EGg,10121
|
|
97
97
|
sky/clouds/__init__.py,sha256=JvZtCgauz5rAids-huDVeeTSyS59aBT1BqMtxvpuD_k,1810
|
|
98
98
|
sky/clouds/aws.py,sha256=PrvbWuSAkPC18HsLVHx8NBJQiduz32NpDm1XXr6NPLo,63737
|
|
99
99
|
sky/clouds/azure.py,sha256=qnabVjfS3em-TvxOIqZ6mMiipnt51MBVf7R0pnyB7bo,33233
|
|
@@ -123,30 +123,32 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
|
|
|
123
123
|
sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
|
|
124
124
|
sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
|
|
125
125
|
sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
|
|
126
|
-
sky/dashboard/out/404.html,sha256=
|
|
127
|
-
sky/dashboard/out/clusters.html,sha256=
|
|
128
|
-
sky/dashboard/out/config.html,sha256=
|
|
126
|
+
sky/dashboard/out/404.html,sha256=gVNmVMf8W1fnRy5iJ-pj3AqlijOVn7JgrnCaYJDbT10,1423
|
|
127
|
+
sky/dashboard/out/clusters.html,sha256=8mp36XN17YZXx1cNCj3I97_RZ1MKhIPutCPwf-9-gWg,1418
|
|
128
|
+
sky/dashboard/out/config.html,sha256=lPc8hNnGjVZgDOrY7XJcY9TsgqnOfYjqxT8_BVbkBjs,1414
|
|
129
129
|
sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
|
|
130
|
-
sky/dashboard/out/index.html,sha256=
|
|
131
|
-
sky/dashboard/out/infra.html,sha256=
|
|
132
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
130
|
+
sky/dashboard/out/index.html,sha256=wRRsfgCNyU4UTqWw3DYwFppsC7362yHzmM8TkXnZ04w,1407
|
|
131
|
+
sky/dashboard/out/infra.html,sha256=OuRXCgxlgRGJUUj_YKI1fGIP5eABVeD-4J-csGeUG7A,1412
|
|
132
|
+
sky/dashboard/out/jobs.html,sha256=J5OPNhFzvhKmNjYlAjt4w2EKYp1oIzBJKoYiDywN8Sw,1410
|
|
133
133
|
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
|
134
|
-
sky/dashboard/out/users.html,sha256=
|
|
135
|
-
sky/dashboard/out/volumes.html,sha256=
|
|
136
|
-
sky/dashboard/out/workspaces.html,sha256=
|
|
137
|
-
sky/dashboard/out/_next/static/
|
|
138
|
-
sky/dashboard/out/_next/static/
|
|
134
|
+
sky/dashboard/out/users.html,sha256=jzk6WbSvitGdewtMiHEoN3xiFP9GhBmF88Doxx7Vurs,1412
|
|
135
|
+
sky/dashboard/out/volumes.html,sha256=tavkkqkVWsw8GtmnhikaIwk3gAJpojySHPLJwYFk6Dw,1416
|
|
136
|
+
sky/dashboard/out/workspaces.html,sha256=klOV1CorIXXUFvEqB4AyzcQlUlABf6S6ctjwrKratCI,1422
|
|
137
|
+
sky/dashboard/out/_next/static/CJlKj9Z9fXGlQCmH4EpLX/_buildManifest.js,sha256=4BZq2uwZUp0bd9rX6pFyRYELyEn_D68L7CuN29Fp9vM,2394
|
|
138
|
+
sky/dashboard/out/_next/static/CJlKj9Z9fXGlQCmH4EpLX/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
139
|
+
sky/dashboard/out/_next/static/chunks/1141-ec6f902ffb865853.js,sha256=G93wl4hvBqTIDEzkkiFBwVSnOqaFGmE3-AiKtyuWHxU,18362
|
|
139
140
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
140
|
-
sky/dashboard/out/_next/static/chunks/1871-
|
|
141
|
+
sky/dashboard/out/_next/static/chunks/1871-165dc0e1553d9822.js,sha256=k07Kv3GbTIybDvzezwRW2aP1SMXlJDYfEIZzOv1qdxk,20697
|
|
141
142
|
sky/dashboard/out/_next/static/chunks/2350.fab69e61bac57b23.js,sha256=TQCHO4AUL9MZo1e_8GOiL8y6vjQpj5tdXZ8oCKwM1LA,271
|
|
142
143
|
sky/dashboard/out/_next/static/chunks/2369.fc20f0c2c8ed9fe7.js,sha256=qkKMDvgq-AVeC811VipJzXHAB__R4G2eHj-I-7_N2Ek,8177
|
|
143
|
-
sky/dashboard/out/_next/static/chunks/2755.
|
|
144
|
-
sky/dashboard/out/_next/static/chunks/3015-
|
|
145
|
-
sky/dashboard/out/_next/static/chunks/3294.
|
|
146
|
-
sky/dashboard/out/_next/static/chunks/3785.
|
|
144
|
+
sky/dashboard/out/_next/static/chunks/2755.1ffbda43f960962b.js,sha256=L1ugqljfArvkmDAaFb2dxrn19kXWzXO8aYEWXoCydVQ,51919
|
|
145
|
+
sky/dashboard/out/_next/static/chunks/3015-2dcace420c8939f4.js,sha256=x2a17x1qLtY7eu1jJ6BrM9wtZB8YK7RsVhrHwzFKM6Y,39338
|
|
146
|
+
sky/dashboard/out/_next/static/chunks/3294.27318ad826343ea6.js,sha256=1bhrZzCBDqUT-14jtZJxoQ9UlTz5uRHYO3B_vhrKQYI,42623
|
|
147
|
+
sky/dashboard/out/_next/static/chunks/3785.483a3dda2d52f26e.js,sha256=YgJBr9UH5XOdxwGyfIEOS9jDKTV-hBMd173QSRp2HYs,4538
|
|
147
148
|
sky/dashboard/out/_next/static/chunks/3850-ff4a9a69d978632b.js,sha256=XphBY9psNzmvGD28zgDunQEb-TX0_eOVaElmcuOjD1g,7455
|
|
148
149
|
sky/dashboard/out/_next/static/chunks/3937.210053269f121201.js,sha256=0tYP8uuog_WLEZmEuej4zenfX0PUa17nR874wSSBgqI,54583
|
|
149
|
-
sky/dashboard/out/_next/static/chunks/
|
|
150
|
+
sky/dashboard/out/_next/static/chunks/4282-d2f3ef2fbf78e347.js,sha256=CwIckvjNXZYoAUgzEPWON0jeBRrbk99yi5oK8RgN07A,8865
|
|
151
|
+
sky/dashboard/out/_next/static/chunks/4725.a830b5c9e7867c92.js,sha256=lB9_aX3RDlK4C1hcKfD9_AJ3ekjxSICk3mRNhoDL1Ek,16007
|
|
150
152
|
sky/dashboard/out/_next/static/chunks/4937.a2baa2df5572a276.js,sha256=WSR1BWr-lYNW6tNy2zN_eeAM16NbzByx5kzjF06vkIA,9318
|
|
151
153
|
sky/dashboard/out/_next/static/chunks/5739-d67458fcb1386c92.js,sha256=UMLEyZH3SWcAdDnaOYztbUYUzCCP2t0KiwP2vT_swDQ,65504
|
|
152
154
|
sky/dashboard/out/_next/static/chunks/6130-2be46d70a38f1e82.js,sha256=5gyzVH8d5jnrVqCh9y0HEFcRmg4zguJ9_fe9olGFW2U,29162
|
|
@@ -154,50 +156,48 @@ sky/dashboard/out/_next/static/chunks/6135-4b4d5e824b7f9d3c.js,sha256=OLvQvfyMwh
|
|
|
154
156
|
sky/dashboard/out/_next/static/chunks/616-3d59f75e2ccf9321.js,sha256=UQxIbEZseq4ore8Y1Tm5OT3Re7fU8ZZKjQQWk4JPvK4,179393
|
|
155
157
|
sky/dashboard/out/_next/static/chunks/6212-7bd06f60ba693125.js,sha256=ipLAaXhbFdPNtxl4XXjguGHlA4fAytX77aaU2zFt4fk,785262
|
|
156
158
|
sky/dashboard/out/_next/static/chunks/6601-06114c982db410b6.js,sha256=coh7shL8L5Vp2MsibBTx-xxNq_BI-zp0jAl7f6eVmUQ,9659
|
|
157
|
-
sky/dashboard/out/_next/static/chunks/6856-
|
|
159
|
+
sky/dashboard/out/_next/static/chunks/6856-5c94d394259cdb6e.js,sha256=Fej_qPJmxLQ4qnIX2R-1-9BxF29sI842wpImqC7602E,18207
|
|
158
160
|
sky/dashboard/out/_next/static/chunks/6989-01359c57e018caa4.js,sha256=iIEGQp3dsChOsDxd7QH_ShGczWhvigMfIT35CSsZjjY,11873
|
|
159
161
|
sky/dashboard/out/_next/static/chunks/6990-f6818c84ed8f1c86.js,sha256=S_U1sK3gxmP1Lw9QkbrfWmjpdc1qeR2olYlNx04klOQ,16152
|
|
160
162
|
sky/dashboard/out/_next/static/chunks/7359-c8d04e06886000b3.js,sha256=xYHgSaC-IzLl8rjWP56VOQOt_34T0pZ-37e-sAyua74,9624
|
|
161
163
|
sky/dashboard/out/_next/static/chunks/7411-b15471acd2cba716.js,sha256=Dnmr9e-yZQbnkjwzqIZU3aK-3u1Tqr8STF-ODYWLkaw,13304
|
|
162
164
|
sky/dashboard/out/_next/static/chunks/8640.5b9475a2d18c5416.js,sha256=FTVy8VJRwSeEK7QH0GzTjs1b8aIz9x-pVlRcSVHdrfw,2398
|
|
163
|
-
sky/dashboard/out/_next/static/chunks/8969-
|
|
165
|
+
sky/dashboard/out/_next/static/chunks/8969-0389e2cb52412db3.js,sha256=_9xL6WblFU_Mzt_vw_xsmZ2Kg_BRI20U3TSZ4rWXqN0,14612
|
|
164
166
|
sky/dashboard/out/_next/static/chunks/9025.c12318fb6a1a9093.js,sha256=1Txv8nMuBYtB0UoWdwmFbkA2iB85jgKB1EJJrE1ETDo,10605
|
|
165
|
-
sky/dashboard/out/_next/static/chunks/9360.
|
|
167
|
+
sky/dashboard/out/_next/static/chunks/9360.07d78b8552bc9d17.js,sha256=EJNGWdbf5AtzqwtsPQMD5gn8qjUrgYTeIvAqdLadU3Y,20790
|
|
166
168
|
sky/dashboard/out/_next/static/chunks/9847.3aaca6bb33455140.js,sha256=kN42YbIl4M-2zBVFZzHWFGgzF0qZ4w11P_Kn6juuXZI,39896
|
|
167
169
|
sky/dashboard/out/_next/static/chunks/fd9d1056-86323a29a8f7e46a.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
|
|
168
170
|
sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_QbamfAbTV4_xMVOTjz0rhiAPAi8ET5MuSNjjW5oMng,140965
|
|
169
171
|
sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
|
|
170
172
|
sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
|
|
171
173
|
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
172
|
-
sky/dashboard/out/_next/static/chunks/webpack-
|
|
174
|
+
sky/dashboard/out/_next/static/chunks/webpack-434b7577d72c879b.js,sha256=26_MLlh4m8yr3Dv014krgUw-X5j6rgIvOdFo1VJCkVc,4770
|
|
173
175
|
sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
|
|
174
176
|
sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
175
|
-
sky/dashboard/out/_next/static/chunks/pages/clusters-
|
|
177
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters-57221ec2e4e01076.js,sha256=w4MmPcFrR3R55YMHipuO6TQNEqggbldjW4NWjrk9_S0,869
|
|
176
178
|
sky/dashboard/out/_next/static/chunks/pages/config-dfb9bf07b13045f4.js,sha256=imQqQzmk2dN9ly16TS_d7BV1rHuhzYxrkyx4YUylJCw,796
|
|
177
179
|
sky/dashboard/out/_next/static/chunks/pages/index-444f1804401f04ea.js,sha256=caOxDw7dl3NlA86txmKO4O-D02wQ_o8WbGleTa-bU1I,482
|
|
178
|
-
sky/dashboard/out/_next/static/chunks/pages/infra-
|
|
179
|
-
sky/dashboard/out/_next/static/chunks/pages/jobs-
|
|
180
|
-
sky/dashboard/out/_next/static/chunks/pages/users-
|
|
181
|
-
sky/dashboard/out/_next/static/chunks/pages/volumes-
|
|
182
|
-
sky/dashboard/out/_next/static/chunks/pages/workspaces-
|
|
183
|
-
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]-
|
|
184
|
-
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-
|
|
185
|
-
sky/dashboard/out/_next/static/chunks/pages/infra/[context]-
|
|
186
|
-
sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-
|
|
187
|
-
sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-
|
|
180
|
+
sky/dashboard/out/_next/static/chunks/pages/infra-872e6a00165534f4.js,sha256=zuxGdMWVwSZpetu6IRdXEQQ9qHGfecXuFaiu4brPgHs,839
|
|
181
|
+
sky/dashboard/out/_next/static/chunks/pages/jobs-0dc34cf9a8710a9f.js,sha256=Np0qAfIHm20_sZJMgzLtp5ikgPjYQuvAVvJOAkeW4Q0,842
|
|
182
|
+
sky/dashboard/out/_next/static/chunks/pages/users-3a543725492fb896.js,sha256=tlURrrmRWwzriurLYzget7OBWWwEKLYTmyWSoiw53pA,858
|
|
183
|
+
sky/dashboard/out/_next/static/chunks/pages/volumes-d2af9d22e87cc4ba.js,sha256=c9C0dqj-5vhByRT7E2kpe0tvrgPETTHjNc8SUa55rQA,826
|
|
184
|
+
sky/dashboard/out/_next/static/chunks/pages/workspaces-6fc994fa1ee6c6bf.js,sha256=wUXYsBqGafyl0KG4iI58vICYJCHOzavOTVXFu_r0s70,863
|
|
185
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]-18b334dedbd9f6f2.js,sha256=0veuVmL4Y3GENcquxlsEmdLLvEdLcCQzZiE2ncbFAJA,18462
|
|
186
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-602eeead010ec1d6.js,sha256=Xj-knICXbqJ9F6zTjQRTB_ilKmyOsiNAsVnVfA2f-8E,26732
|
|
187
|
+
sky/dashboard/out/_next/static/chunks/pages/infra/[context]-44ce535a0a0ad4ec.js,sha256=S0PhiJeOGhufROocxa2yub36uv_NhWTa-FYgpL_aj5I,847
|
|
188
|
+
sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-8677af16befde039.js,sha256=hDNA4CVUzNVLGGQDZJxWmam2c2kCg0RDWTWRp0YPP6A,29936
|
|
189
|
+
sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-e020fd69dbe76cea.js,sha256=5eIt_lFp0D_BEUV71mu4rNxapiZpB8368SMtRbh-Qec,26183
|
|
188
190
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
|
|
189
|
-
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-
|
|
191
|
+
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-9ad108cd67d16d96.js,sha256=HYVYvAozHFY6uYUJfyh1i-NQLzAWkjXmqGdyfSNPHhc,1495
|
|
190
192
|
sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
|
|
191
|
-
sky/dashboard/out/
|
|
192
|
-
sky/dashboard/out/
|
|
193
|
-
sky/dashboard/out/
|
|
194
|
-
sky/dashboard/out/
|
|
195
|
-
sky/dashboard/out/
|
|
196
|
-
sky/dashboard/out/jobs/[job].html,sha256=XuJU5wd7jcg7gOGEOi5MIxglk-U846sIaYzK26tffa0,2305
|
|
197
|
-
sky/dashboard/out/jobs/pools/[pool].html,sha256=nFJKWLcsmYKAp8U9HWnU8XChDY7ui1Xv1dGHRXsE9cA,2143
|
|
193
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=6hxXP3Z2hj6Sn8PczCHrMq9yYkHEWpbiOKT9v2UudPE,2937
|
|
194
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=t5uhUqr0tdVeTBrJAWeav_Ws5PpyZ9TQduOqmZv3fPU,2073
|
|
195
|
+
sky/dashboard/out/infra/[context].html,sha256=dupax5ev4RdICrFOHUj7QSQxLqqbrSTnKUc8xC22UbE,1436
|
|
196
|
+
sky/dashboard/out/jobs/[job].html,sha256=fbWaKXRJr3u1G514byDKTYPMfhHIgU94W1bcpWKTWXY,2305
|
|
197
|
+
sky/dashboard/out/jobs/pools/[pool].html,sha256=TZbOd3jbP1agxtywE7ICzv42rokEu1LnwqAlmnwkkqI,2143
|
|
198
198
|
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
|
199
|
-
sky/dashboard/out/workspace/new.html,sha256=
|
|
200
|
-
sky/dashboard/out/workspaces/[name].html,sha256=
|
|
199
|
+
sky/dashboard/out/workspace/new.html,sha256=LAJSzOaPCJ3Wne9EnInMavkj9LIAa4Ln_4EDY5LkKuQ,1428
|
|
200
|
+
sky/dashboard/out/workspaces/[name].html,sha256=BcVXCFbMB4XvzziIovuheCbZG3d49KujC5P3XrPxuu0,2759
|
|
201
201
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
|
202
202
|
sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
|
|
203
203
|
sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
|
|
@@ -205,18 +205,18 @@ sky/data/mounting_utils.py,sha256=trsjpEfQmsctEi6OHMKVSL915OEDdrQVlwTlkXrd4r0,26
|
|
|
205
205
|
sky/data/storage.py,sha256=xtCiDakdBxDOhG1DatGsi0N8BYk29WCkV0d01sa3RKw,209293
|
|
206
206
|
sky/data/storage_utils.py,sha256=bqCE7WQVOpFMxqVRkxee4oLn-iImh4ZL8qB5IicXh0w,14230
|
|
207
207
|
sky/jobs/__init__.py,sha256=BiABNdlab7xZDOv4C34kc1XuxG6C_Ip7Q96mT2iCnIg,1686
|
|
208
|
-
sky/jobs/constants.py,sha256=
|
|
208
|
+
sky/jobs/constants.py,sha256=KF4g6B9ueU1jOE7BltMif2pPqCKOt0jeyTdvlxOJD5k,3057
|
|
209
209
|
sky/jobs/controller.py,sha256=S6JFb5R6BQHLROVB_bzV_blIWJN7NJ_DOyTBy_Jh-Es,57083
|
|
210
210
|
sky/jobs/recovery_strategy.py,sha256=FUyHTOtJ0rvTL-vznX8FcJP84ORlavewptLXr3r9evI,38423
|
|
211
211
|
sky/jobs/scheduler.py,sha256=sUa83wiiuv0bwYDcn9-J1uCqZjhUkfE8z_hjG5Xl7rY,17210
|
|
212
|
-
sky/jobs/state.py,sha256=
|
|
213
|
-
sky/jobs/utils.py,sha256=
|
|
212
|
+
sky/jobs/state.py,sha256=8dAhqcnEzPUxbsGvWWA1baKjnpb6xNHKqE3C6vv014Q,98052
|
|
213
|
+
sky/jobs/utils.py,sha256=vcGnB1QSA-pQdKSS-5a4T1W8N6aRUlWjfBfHyO_qZlw,102151
|
|
214
214
|
sky/jobs/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
|
-
sky/jobs/client/sdk.py,sha256=
|
|
216
|
-
sky/jobs/client/sdk_async.py,sha256=
|
|
215
|
+
sky/jobs/client/sdk.py,sha256=ZF-rtLhynC1VK8UNO3aaxcluOo3QnltokGYxJfhI7_g,17818
|
|
216
|
+
sky/jobs/client/sdk_async.py,sha256=RlYs0S5cenlIH8NIM74QYhLeDR0qqCYK3MVGWBhCu8c,5188
|
|
217
217
|
sky/jobs/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
218
|
-
sky/jobs/server/core.py,sha256=
|
|
219
|
-
sky/jobs/server/server.py,sha256=
|
|
218
|
+
sky/jobs/server/core.py,sha256=TkjqVXHwoIgyhCOp1WrHYTiKX0ilpaIxhShPl7tSIuk,48638
|
|
219
|
+
sky/jobs/server/server.py,sha256=Ns_zCJ0LykUQnuK6QNsJFOEWNfHgcG5DTd3phGQw-xU,9677
|
|
220
220
|
sky/jobs/server/utils.py,sha256=rI_fVyEJhHjuapcB6JefkKgRuT_VeLiubAixsPo5jj0,5023
|
|
221
221
|
sky/logs/__init__.py,sha256=zW4gAEvWDz5S53FlLp3krAuKrmTSJ0e3kZDnhxSbW4E,722
|
|
222
222
|
sky/logs/agent.py,sha256=Jwpzio10P45BS6cugt6Ovu3_ZhysuXVcL_aneYZQENE,4766
|
|
@@ -337,7 +337,7 @@ sky/provision/vsphere/common/vapiconnect.py,sha256=piU29ZfdYCJQMV5n-5J0EQ8G56AWO
|
|
|
337
337
|
sky/provision/vsphere/common/vim_utils.py,sha256=TjDgxIzV5Iuc5j1aFNL3NpaOwS0KKXhEUEwq7dzQT-s,17849
|
|
338
338
|
sky/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
339
|
sky/schemas/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
-
sky/schemas/api/responses.py,sha256=
|
|
340
|
+
sky/schemas/api/responses.py,sha256=SiBW4IwWyXI6-LEJ5VcMK8x2vfXtIZQ1AVykvJWI9Ek,6918
|
|
341
341
|
sky/schemas/db/README,sha256=M93NBw29groxXu-Gy7sgqSyxpppXpRBbXxEXANLhVCo,122
|
|
342
342
|
sky/schemas/db/env.py,sha256=T-2a00Z9RcaIqcMu90R-RNA_lCutsWBRopDy4LQFnoM,2918
|
|
343
343
|
sky/schemas/db/script.py.mako,sha256=04kgeBtNMa4cCnG8CfQcKt6P6rnloIfj8wy0u_DBydM,704
|
|
@@ -352,6 +352,7 @@ sky/schemas/db/global_user_state/008_skylet_ssh_tunnel_metadata.py,sha256=z8yfOV
|
|
|
352
352
|
sky/schemas/db/global_user_state/009_last_activity_and_launched_at.py,sha256=Q45bY_9_yRnZRpWBYDB4-GQhFkJggqzlhyaoeQMR8MU,3297
|
|
353
353
|
sky/schemas/db/global_user_state/010_save_ssh_key.py,sha256=4COwG9xzt3xsCIFZ102Oa2iyPl2h4K95vvoSN0ybCDQ,2242
|
|
354
354
|
sky/schemas/db/serve_state/001_initial_schema.py,sha256=9vy5hO4Zqe-DN-33vBJQTvgJnDFcTgz18gKfO3UB62g,2595
|
|
355
|
+
sky/schemas/db/skypilot_config/001_initial_schema.py,sha256=hdLQpaNack2xlUyr4gI0rkRTK4syZqydPvJJdKMExK8,685
|
|
355
356
|
sky/schemas/db/spot_jobs/001_initial_schema.py,sha256=eHT3GxFHQhySA1rO5uZq9QlloJdtTMQp93f0CRmayf8,3759
|
|
356
357
|
sky/schemas/db/spot_jobs/002_cluster_pool.py,sha256=9ef0D_lUb4WB0e9uz8E0my_X4cgK_oX-WIj4p8usbOA,1369
|
|
357
358
|
sky/schemas/db/spot_jobs/003_pool_hash.py,sha256=YSBPXx277ErScN1Z0fo54go11j7qnYDmfUvVCshhnhE,872
|
|
@@ -388,15 +389,15 @@ sky/serve/client/sdk_async.py,sha256=idvbLb6q_NBo79OnXE-3SF-bwYFMPzDg_khiNqOLd3o
|
|
|
388
389
|
sky/serve/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
390
|
sky/serve/server/core.py,sha256=4w79PONDX5hAem95U1MRDHZ1VNMaBZJkI6hv5d2IKjQ,11011
|
|
390
391
|
sky/serve/server/impl.py,sha256=oQL6qd-rTq9M7Qs3n-fCv0vyQe1F9dAid_OgmRCjyjs,48982
|
|
391
|
-
sky/serve/server/server.py,sha256=
|
|
392
|
+
sky/serve/server/server.py,sha256=0NhZTXhRqDA5ZEsZDBeIkpRZ1cfzjdroAuAwwvKwFxM,4717
|
|
392
393
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
|
393
|
-
sky/server/common.py,sha256=
|
|
394
|
+
sky/server/common.py,sha256=cfDe06XYp2o4aa1DbZ0A4VFrrkC5SodxZctZwnmciew,40142
|
|
394
395
|
sky/server/config.py,sha256=oQO2Wls01oYIIr4h7B6UiPBNPcsqHlCJ3batir-Zx80,11143
|
|
395
396
|
sky/server/constants.py,sha256=54w38B5AsRVCMCPP_iN7YoaApxbcttt3pue0VEP9DWg,2615
|
|
396
397
|
sky/server/daemons.py,sha256=pEmLE0JsR6C8ZSxt8sr4ncPfZcDYvXqDCycU0IDcQ8U,9238
|
|
397
398
|
sky/server/metrics.py,sha256=8mTyD-zo2gyAJSPJyCtTR8oImeFJ2K-sAdlje5Bf5U4,5781
|
|
398
|
-
sky/server/rest.py,sha256=
|
|
399
|
-
sky/server/server.py,sha256=
|
|
399
|
+
sky/server/rest.py,sha256=XDvKhVY9br9zt4TNbygUH_XDbH_wugzxKNYlbqVHJjY,16045
|
|
400
|
+
sky/server/server.py,sha256=ra9dqKtDI8iQmJqMw2JItNQMczh8isaCTG6rt1uhXxs,88128
|
|
400
401
|
sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
|
|
401
402
|
sky/server/stream_utils.py,sha256=9yHkB5Gkpago3WgR_sKBK5nJTpUYlBcYgTGVqMPYm9k,16750
|
|
402
403
|
sky/server/uvicorn.py,sha256=etFyJP9Kz5uRhM619VrQMiVhJKWPxTqbaz9H1wW1EWs,11955
|
|
@@ -404,25 +405,25 @@ sky/server/versions.py,sha256=3atZzUa7y1XeKNcrfVxKWAo_5ZyCOnbY7DKpIqed7Do,10011
|
|
|
404
405
|
sky/server/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
406
|
sky/server/auth/authn.py,sha256=zvabLsEAf9Ql6AbXJuWZ54uaiOr1mwFGGvQn84v66H4,2037
|
|
406
407
|
sky/server/auth/loopback.py,sha256=Vk8iaatXBrXJLBsng9StK9kgwcJnMFqbc35exX5Aikc,1069
|
|
407
|
-
sky/server/auth/oauth2_proxy.py,sha256=
|
|
408
|
+
sky/server/auth/oauth2_proxy.py,sha256=thTdRMfYhO9Zx1efIy81AJwmQqu1P1iXiVc5gL_Cstg,9188
|
|
408
409
|
sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
|
409
410
|
sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
|
|
410
411
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
412
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
|
412
|
-
sky/server/requests/executor.py,sha256=
|
|
413
|
-
sky/server/requests/payloads.py,sha256=
|
|
413
|
+
sky/server/requests/executor.py,sha256=quK4m2OVY_7uFASLAo-P8mzTu2i820y5hQWU8tyLbFI,37029
|
|
414
|
+
sky/server/requests/payloads.py,sha256=MUHuj4CaxrpI_52K76gLDEtPmsrc2WZFt2cBKL0UFus,28286
|
|
414
415
|
sky/server/requests/preconditions.py,sha256=L_4ow2Twl0h2sk2P4waL2e1WVfYm4p4DFwmR6Nip8Bw,7486
|
|
415
416
|
sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
|
|
416
|
-
sky/server/requests/requests.py,sha256=
|
|
417
|
+
sky/server/requests/requests.py,sha256=zPHBx7dnfxhF0PfOHJZFLZl6n-C2h7ZDW0ovlla9fdA,40678
|
|
417
418
|
sky/server/requests/threads.py,sha256=AwzbcoeLDz5RnSi0jJSD3u4lGDiYkCaa1qDvPkUqeMI,4131
|
|
418
419
|
sky/server/requests/queues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
420
|
sky/server/requests/queues/local_queue.py,sha256=X6VkBiUmgd_kfqIK1hCtMWG1b8GiZbY70TBiBR6c6GY,416
|
|
420
421
|
sky/server/requests/queues/mp_queue.py,sha256=jDqP4Jd28U3ibSFyMR1DF9I2OWZrPZqFJrG5S6RFpyw,3403
|
|
421
422
|
sky/server/requests/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
422
|
-
sky/server/requests/serializers/decoders.py,sha256=
|
|
423
|
-
sky/server/requests/serializers/encoders.py,sha256=
|
|
423
|
+
sky/server/requests/serializers/decoders.py,sha256=lnAPHBWaiCoCr2p2RbFkDqexi3Y1lBbeKCTRJWi18Zg,8837
|
|
424
|
+
sky/server/requests/serializers/encoders.py,sha256=POKopCYRFnk546wOZE8DbAKrmmFawCfaW34wyckhcxk,8457
|
|
424
425
|
sky/setup_files/MANIFEST.in,sha256=4gbgHHwSdP6BbMJv5XOt-2K6wUVWF_T9CGsdESvh918,776
|
|
425
|
-
sky/setup_files/alembic.ini,sha256=
|
|
426
|
+
sky/setup_files/alembic.ini,sha256=d85kX5QMzCHxrgOct7StGixQEkaO7LKGKjSXLIwBRZI,5201
|
|
426
427
|
sky/setup_files/dependencies.py,sha256=CIp265rhS4BRH6CAwWyQoZMZe7H-DXXEALsh3zaII0M,9442
|
|
427
428
|
sky/setup_files/setup.py,sha256=4M8u9Y4wwmFCJk-EfsnMWtpNq7ynzqbjdVTKW3w5GXA,7820
|
|
428
429
|
sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
|
|
@@ -433,11 +434,11 @@ sky/skylet/configs.py,sha256=nNBnpuzoU696FbC3Nv0qKVSDuTw4GAbr7eCcg0_Sldo,2135
|
|
|
433
434
|
sky/skylet/constants.py,sha256=8g2_npa_-EjUrZvYpO1CqsGafYzpWX8IKXHYWO8NQyY,25941
|
|
434
435
|
sky/skylet/events.py,sha256=2vlMyR1Df3zB6ggBJNN2lUunH6x-n-m-nvsHuTwQpXc,16481
|
|
435
436
|
sky/skylet/job_lib.py,sha256=_BlkEQhsTIBfPOaIDVshMTNQPSgkRaNFk5HrP0aH7Qc,53226
|
|
436
|
-
sky/skylet/log_lib.py,sha256=
|
|
437
|
+
sky/skylet/log_lib.py,sha256=6zQnJJamr5Q1ZPOgP85h2-LlyOAOGl4hhDp6kkRBf7Q,32355
|
|
437
438
|
sky/skylet/log_lib.pyi,sha256=cpbQ4oa1C3Vl5rmPKkA4wupgKTOZlPFZHQiqrhxR_X8,5409
|
|
438
|
-
sky/skylet/services.py,sha256=
|
|
439
|
+
sky/skylet/services.py,sha256=__mC_5I1Y1i1bUHwU4LqmQZVzdkRtTTJhI5kF_fLq-Q,26694
|
|
439
440
|
sky/skylet/skylet.py,sha256=Hi07DNpTwvWz575iCLeHCpUlpnQrKQD_SSJdL2SPvo0,3019
|
|
440
|
-
sky/skylet/subprocess_daemon.py,sha256=
|
|
441
|
+
sky/skylet/subprocess_daemon.py,sha256=0eA855Bir4eVwjxn0vKUc53VgDQBnZo_oG2QqYiqZCg,6258
|
|
441
442
|
sky/skylet/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
443
|
sky/skylet/providers/command_runner.py,sha256=DdBKP0QX325_N3zAVYwnmXmfbfXNqkzWQZpF9DSR7Go,16259
|
|
443
444
|
sky/skylet/providers/ibm/__init__.py,sha256=GXo5F9ztvs0qMDI_G9wM5KvzySfYugslJMHHAnBENRc,94
|
|
@@ -461,7 +462,7 @@ sky/skylet/ray_patches/worker.py.diff,sha256=agiK3C1elsLO8aLcspfUJvtG-88ckLZoDmx
|
|
|
461
462
|
sky/skylet/ray_patches/worker.py.patch,sha256=_OBhibdr3xOy5Qje6Tt8D1eQVm_msi50TJbCJmOTxVU,565
|
|
462
463
|
sky/ssh_node_pools/__init__.py,sha256=phpYJAd7I0uO1-O87eb9PbetGbtMiKW5mI-NQCZlXPA,40
|
|
463
464
|
sky/ssh_node_pools/core.py,sha256=uUWDsn5zXkOOtIX5dpB_8qwb33_Fy6NhBDQADGAQ5WA,4917
|
|
464
|
-
sky/ssh_node_pools/server.py,sha256=
|
|
465
|
+
sky/ssh_node_pools/server.py,sha256=k368hbL7eMmYMRyuyMfH6wR30tNsR4A6I7OQGnI_oic,8369
|
|
465
466
|
sky/templates/aws-ray.yml.j2,sha256=ppW_L_o4g465jOgYNyDBssMt0V5ryWNoeLjs6Xeq9pE,9380
|
|
466
467
|
sky/templates/azure-ray.yml.j2,sha256=cQfCDev0quaVfVst_ly3tA8XrGXuAmAhkRJuS7qxFhg,6373
|
|
467
468
|
sky/templates/cudo-ray.yml.j2,sha256=9g0yFYUk6xPet-JNTPuVDZlVZ9oAcFPL1qaE6fyy-Xc,3797
|
|
@@ -495,7 +496,7 @@ sky/usage/constants.py,sha256=mFrTgrFIfFf4kpcl-M1VDU7_moD5_mJazUJTUDrybms,1102
|
|
|
495
496
|
sky/usage/usage_lib.py,sha256=MgNNcaxX1gVYDY7lN9mvDIYNhcp6lKxg4Ptk5_hSVsw,21656
|
|
496
497
|
sky/users/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
498
|
sky/users/model.conf,sha256=nPAaMai2fc-nlnEDTfW5Lyw6vgCcOS32BSms4aFOHoY,259
|
|
498
|
-
sky/users/permission.py,sha256=
|
|
499
|
+
sky/users/permission.py,sha256=An6rc5CCHb5KT76glAUTLOeecXOwM4rJy09D-cSB75M,15979
|
|
499
500
|
sky/users/rbac.py,sha256=3ZWukXo85u6zWbPmHcPsF9EtZ3cd_51PLZYf2h-7uAM,3636
|
|
500
501
|
sky/users/server.py,sha256=HncIz1oltx-khqhwqLINmQs9MENRjeR2CCTnvs4TniM,28229
|
|
501
502
|
sky/users/token_service.py,sha256=78Xgm6rkd5M6IMMUekAp2YNLms4teNNvVDPfHh_5jts,7804
|
|
@@ -537,7 +538,7 @@ sky/utils/rich_utils.py,sha256=Zb48ZeOX58WG2me48XYk2VO4N_BXL154xJwqlHu0zw8,20031
|
|
|
537
538
|
sky/utils/schemas.py,sha256=dtyKZjv1-t010khv6yf6ckJ_JaOzbfUXhE6eUTBrsrM,58042
|
|
538
539
|
sky/utils/serialize_utils.py,sha256=nn2x-8cTZeiVr5cgaBpLOGGpSFtms62QAJFyxs_bodI,630
|
|
539
540
|
sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
|
|
540
|
-
sky/utils/subprocess_utils.py,sha256=
|
|
541
|
+
sky/utils/subprocess_utils.py,sha256=LOdk03dA9NDTgbKisdHGWtIFXTtxeKIRDoSO_Rm8JIQ,16685
|
|
541
542
|
sky/utils/tempstore.py,sha256=3S5fJ3UjnE12ve38c3MpTXpoRWfDSGndZpqNe7P_8aU,2148
|
|
542
543
|
sky/utils/timeline.py,sha256=W_HrRBWS9glV25CyCBGUTn1OBe7b0S7kBL8_jv18CZU,3060
|
|
543
544
|
sky/utils/ux_utils.py,sha256=JTEMwWdvNvXWTVTsQnsh9Du5Bh_g1y5z4yXDriZuJvI,12581
|
|
@@ -549,8 +550,8 @@ sky/utils/aws/get_default_security_group.py,sha256=LPzz5133ZUMbzDD3iqqACL9Pdlgqi
|
|
|
549
550
|
sky/utils/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
550
551
|
sky/utils/cli_utils/status_utils.py,sha256=_hdPmlFC3YOnJkttHx2GMGc9lBQqRWY8WTWc1ZWR4GI,16183
|
|
551
552
|
sky/utils/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
552
|
-
sky/utils/db/db_utils.py,sha256=
|
|
553
|
-
sky/utils/db/migration_utils.py,sha256=
|
|
553
|
+
sky/utils/db/db_utils.py,sha256=C3s89lC2fH2Pz6KWNBRAJYiJXMIScOYVfABlxqZt_ic,17768
|
|
554
|
+
sky/utils/db/migration_utils.py,sha256=Kv1oPC67dYWGBkdj10WHvdubfKZsZA31pSmbCWT_5G4,5147
|
|
554
555
|
sky/utils/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
555
556
|
sky/utils/kubernetes/cleanup-tunnel.sh,sha256=rXMXuMfyB9bzKjLvXdMCjimDVvdjGPMXuqeo2ZNx9OA,2244
|
|
556
557
|
sky/utils/kubernetes/config_map_utils.py,sha256=Qq-Glt1SeYDfhcCqcpRtBDRPum0CYR50gpoa_Xm7u1s,4754
|
|
@@ -573,14 +574,14 @@ sky/volumes/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
573
574
|
sky/volumes/client/sdk.py,sha256=VNZPmx09FSSpn7oVoYWtiY71DLA3BBhM1XXlAWipJmU,4183
|
|
574
575
|
sky/volumes/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
576
|
sky/volumes/server/core.py,sha256=ZdKcedOZQEZYT-s-4qQIce5KgIw5AfVNLaPnsIblZkg,9974
|
|
576
|
-
sky/volumes/server/server.py,sha256=
|
|
577
|
+
sky/volumes/server/server.py,sha256=Cp77ZnULWmGrUoqZ0K461ilh0xtSkt0kMy-FP9hIYn0,4577
|
|
577
578
|
sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
578
579
|
sky/workspaces/core.py,sha256=kRrdh-8MhX1953pML1B_DoStnDuNrsmHcZlnWoAxVo0,27218
|
|
579
|
-
sky/workspaces/server.py,sha256=
|
|
580
|
+
sky/workspaces/server.py,sha256=T1K52wR88nARVMUBf2cpIP3VURjDNQTcN6HIp7prghE,3511
|
|
580
581
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
581
|
-
skypilot_nightly-1.0.0.
|
|
582
|
-
skypilot_nightly-1.0.0.
|
|
583
|
-
skypilot_nightly-1.0.0.
|
|
584
|
-
skypilot_nightly-1.0.0.
|
|
585
|
-
skypilot_nightly-1.0.0.
|
|
586
|
-
skypilot_nightly-1.0.0.
|
|
582
|
+
skypilot_nightly-1.0.0.dev20251023.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
583
|
+
skypilot_nightly-1.0.0.dev20251023.dist-info/METADATA,sha256=YX6M5drYEFYqWqq23zY-rzfABCnfnni--etD9nSXenI,31328
|
|
584
|
+
skypilot_nightly-1.0.0.dev20251023.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
585
|
+
skypilot_nightly-1.0.0.dev20251023.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
586
|
+
skypilot_nightly-1.0.0.dev20251023.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
587
|
+
skypilot_nightly-1.0.0.dev20251023.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[1141],{99333:function(e,s,r){r.d(s,{Z:function(){return t}});/**
|
|
2
|
-
* @license lucide-react v0.407.0 - ISC
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the ISC license.
|
|
5
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
6
|
-
*/let t=(0,r(60998).Z)("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]])},98418:function(e,s,r){r.d(s,{Z:function(){return t}});/**
|
|
7
|
-
* @license lucide-react v0.407.0 - ISC
|
|
8
|
-
*
|
|
9
|
-
* This source code is licensed under the ISC license.
|
|
10
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
11
|
-
*/let t=(0,r(60998).Z)("Trash",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}]])},1812:function(e,s,r){r.d(s,{X:function(){return n}});var t=r(85893),a=r(67294);let l=e=>{if(!(null==e?void 0:e.message))return"An unexpected error occurred.";let s=e.message;return s.includes("failed:")&&(s=s.split("failed:")[1].trim()),s},n=e=>{let{error:s,title:r="Error",onDismiss:n}=e,[c,i]=(0,a.useState)(!1);if((0,a.useEffect)(()=>{s&&i(!1)},[s]),!s||c)return null;let o="string"==typeof s?s:l(s);return(0,t.jsx)("div",{className:"bg-red-50 border border-red-200 rounded-md p-3 mb-4",children:(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsxs)("div",{className:"flex",children:[(0,t.jsx)("div",{className:"flex-shrink-0",children:(0,t.jsx)("svg",{className:"h-5 w-5 text-red-400",viewBox:"0 0 20 20",fill:"currentColor",children:(0,t.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z",clipRule:"evenodd"})})}),(0,t.jsx)("div",{className:"ml-3",children:(0,t.jsxs)("div",{className:"text-sm text-red-800",children:[(0,t.jsxs)("strong",{children:[r,":"]})," ",o]})})]}),(0,t.jsx)("button",{onClick:()=>{i(!0),n&&n()},className:"flex-shrink-0 ml-4 text-red-400 hover:text-red-600 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2 focus:ring-offset-red-50 rounded","aria-label":"Dismiss error",children:(0,t.jsx)("svg",{className:"h-4 w-4",viewBox:"0 0 20 20",fill:"currentColor",children:(0,t.jsx)("path",{fillRule:"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",clipRule:"evenodd"})})})]})})}},69123:function(e,s,r){r.d(s,{g:function(){return n}});var t=r(85893),a=r(67294),l=r(32350);let n=a.forwardRef((e,s)=>{let{className:r,...a}=e;return(0,t.jsx)("textarea",{className:(0,l.cn)("flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",r),ref:s,...a})});n.displayName="Textarea"},11141:function(e,s,r){r.r(s),r.d(s,{WorkspaceEditor:function(){return R}});var t=r(85893),a=r(67294),l=r(11163),n=r(17324),c=r(23266),i=r(68969);r(6135);var o=r(41664),d=r.n(o),u=r(9008),x=r.n(u),m=r(37673),h=r(30803),f=r(69123),g=r(55739),p=r(70282),b=r(6021),j=r(13626),y=r(98418),N=r(99333),v=r(50326);let k=e=>{let{className:s="",variant:r="default",children:a,...l}=e;return(0,t.jsx)("div",{role:"alert",className:"".concat("relative w-full rounded-lg border p-4 flex items-start space-x-2"," ").concat({default:"bg-blue-50 border-blue-200 text-blue-800",destructive:"bg-red-50 border-red-200 text-red-800"}[r]," ").concat(s),...l,children:a})},w=e=>{let{className:s="",children:r,...a}=e;return(0,t.jsx)("div",{className:"text-sm leading-relaxed ".concat(s),...a,children:r})};var C=r(53850),L=r(1812),E=r(23015),S=r(1272),W=r(93225),A=r(53081);let Z=e=>{let{message:s}=e;return s?(0,t.jsxs)(k,{className:"border-green-200 bg-green-50",children:[(0,t.jsx)(p.Z,{className:"h-4 w-4 text-green-600"}),(0,t.jsx)(w,{className:"text-green-800",children:s})]}):null},D=e=>{let{workspaceName:s,config:r,enabledClouds:a=[]}=e;if(!r)return null;let l="default"===s,n=0===Object.keys(r).length;if(l&&n)return(0,t.jsx)("div",{className:"text-sm text-gray-500 mb-3 italic p-3 bg-sky-50 rounded border border-sky-200",children:"Workspace 'default' can use all accessible infrastructure."});let c=[],i=[],o=[],d=new Set(a.map(e=>e.toLowerCase()));Object.entries(r).forEach(e=>{let[s,r]=e;if("private"===s||"allowed_users"===s)return;let a=W.Z2[s.toLowerCase()]||s.toUpperCase(),l=null==a?void 0:a.toLowerCase(),n=d.has(l)||Array.from(d).some(e=>e.startsWith(l+"/")),u=()=>"kubernetes"===s.toLowerCase()?Array.from(d).filter(e=>e.startsWith(l+"/")).map(e=>e.split("/")[1]):[];if((null==r?void 0:r.disabled)===!0)i.push(a);else if(r&&Object.keys(r).length>0){let e="";if("gcp"===s.toLowerCase()&&r.project_id)e=" (Project ID: ".concat(r.project_id,")");else if("aws"===s.toLowerCase()&&r.region)e=" (Region: ".concat(r.region,")");else if("kubernetes"===s.toLowerCase()){let s=u();s.length>0&&(e=" (Contexts: ".concat(s.join(", "),")"))}n?c.push((0,t.jsxs)("span",{className:"block",children:[a,e," is enabled."]},"".concat(s,"-enabled"))):o.push((0,t.jsxs)("span",{className:"block text-amber-700",children:[a,e," is configured but not currently available."]},"".concat(s,"-configured-not-enabled")))}else if(n){let e="";if("kubernetes"===s.toLowerCase()){let s=u();s.length>0&&(e=" (Contexts: ".concat(s.join(", "),")"))}c.push((0,t.jsxs)("span",{className:"block",children:[a,e," is enabled (using default settings)."]},"".concat(s,"-default-enabled")))}else o.push((0,t.jsxs)("span",{className:"block text-amber-700",children:[a," is configured but not currently available."]},"".concat(s,"-default-not-enabled")))});let u=[];if(i.length>0){let e=i.join(" and ");u.push((0,t.jsxs)("span",{className:"block",children:[e," ",1===i.length?"is":"are"," explicitly disabled."]},"disabled-clouds"))}return(u.push(...c),u.push(...o),u.length>0)?(0,t.jsx)("div",{className:"text-sm text-gray-700 mb-3 p-3 bg-sky-50 rounded border border-sky-200",children:u}):!l&&n?(0,t.jsx)("div",{className:"text-sm text-gray-500 mb-3 italic p-3 bg-sky-50 rounded border border-sky-200",children:"This workspace has no specific cloud resource configurations and can use all accessible infrastructure."}):null},M=e=>{let{isPrivate:s}=e;return s?(0,t.jsx)("span",{className:"inline-flex items-center px-2 py-1 rounded-full text-xs font-medium bg-gray-100 text-gray-700 border border-gray-300",children:"Private"}):(0,t.jsx)("span",{className:"inline-flex items-center px-2 py-1 rounded-full text-xs font-medium bg-green-100 text-green-700 border border-green-300",children:"Public"})},P=e=>{let{workspaceConfig:s,allUsers:r}=e;if(!s.private)return null;let a=s.allowed_users||[],l=(r||[]).filter(e=>"admin"===e.role).map(e=>e.username),n=[...new Set([...a,...l])];return 0===n.length?(0,t.jsxs)("div",{className:"mt-4",children:[(0,t.jsx)("h4",{className:"mb-2 text-xs text-gray-500 tracking-wider",children:"Allowed Users (0)"}),(0,t.jsx)("div",{className:"text-amber-600 text-xs italic p-2 bg-amber-50 rounded border border-amber-200",children:"No users configured (workspace may be inaccessible)"})]}):(0,t.jsxs)("div",{className:"mt-4",children:[(0,t.jsxs)("h4",{className:"mb-2 text-xs text-gray-500 tracking-wider",children:["Allowed Users (",n.length,")"]}),(0,t.jsx)("div",{className:"space-y-1 max-h-48 overflow-y-auto border border-gray-200 rounded",children:n.map(e=>{let s=l.includes(e);return(0,t.jsxs)("div",{className:"flex items-center justify-between text-xs p-2 bg-gray-50 hover:bg-gray-100 border-b border-gray-100 last:border-b-0",children:[(0,t.jsx)("span",{className:"font-medium text-gray-700",children:e}),s?(0,t.jsxs)("span",{className:"inline-flex items-center text-blue-600",children:[(0,t.jsx)(C.r7,{className:"w-3 h-3 mr-1"}),"Admin"]}):(0,t.jsxs)("span",{className:"inline-flex items-center text-gray-600",children:[(0,t.jsx)(b.Z,{className:"w-3 h-3 mr-1"}),"User"]})]},e)})})]})};function R(e){let{workspaceName:s,isNewWorkspace:r=!1}=e,o=(0,l.useRouter)(),[u,p]=(0,a.useState)({}),[b,k]=(0,a.useState)({}),[w,W]=(0,a.useState)(""),[R,_]=(0,a.useState)(!0),[z,O]=(0,a.useState)(!1),[U,T]=(0,a.useState)(!1),[Y,J]=(0,a.useState)(null),[I,V]=(0,a.useState)(null),[F,H]=(0,a.useState)(null),[B,X]=(0,a.useState)([]),[G,q]=(0,a.useState)({showDialog:!1,deleting:!1,error:null}),[K,Q]=(0,a.useState)({totalClusterCount:0,runningClusterCount:0,managedJobsCount:0,clouds:[]}),[$,ee]=(0,a.useState)(!1),es=(0,a.useCallback)(async()=>{_(!0),J(null);try{let e;let[r,t]=await Promise.all([(0,n.getWorkspaces)(),(0,A.R)()]),a=r[s]||{};p(a),k(a),X(t||[]),e=0===Object.keys(a).length?"".concat(s,":\n # Empty workspace configuration - uses all accessible infrastructure\n"):S.ZP.dump({[s]:a},{indent:2,lineWidth:-1,noRefs:!0,skipInvalid:!0,flowLevel:-1}),W(e)}catch(e){console.error("Error fetching workspace config:",e),J(e)}finally{_(!1)}},[s]),er=(0,a.useCallback)(async()=>{if(!r){ee(!0);try{let[e,r,t]=await Promise.all([(0,c.getClusters)(),(0,i.getManagedJobs)({allUsers:!0}),(0,n.getEnabledClouds)(s,!0)]),a=e.filter(e=>(e.workspace||"default")===s),l=a.filter(e=>"RUNNING"===e.status||"LAUNCHING"===e.status),o={};e.forEach(e=>{o[e.cluster]=e.workspace||"default"});let d=r.jobs||[],u=new Set(E.statusGroups.active),x=0;d.forEach(e=>{let r=e.cluster_name||e.resources&&e.resources.cluster_name;r&&o[r]===s&&u.has(e.status)&&x++}),Q({totalClusterCount:a.length,runningClusterCount:l.length,managedJobsCount:x,clouds:Array.isArray(t)?t:[]})}catch(e){console.error("Failed to fetch workspace stats:",e)}finally{ee(!1)}}},[s,r]);(0,a.useEffect)(()=>{r?(_(!1),W("".concat(s,":\n # New workspace configuration\n # Leave empty to use all accessible infrastructure\n"))):(es(),er())},[s,r,es,er]),(0,a.useEffect)(()=>{T(JSON.stringify(u)!==JSON.stringify(b))},[u,b]);let et=e=>{W(e),H(null);try{let r=S.ZP.load(e)||{},t=Object.keys(r);if(0===t.length)p({});else if(1===t.length){let e=t[0];if(e!==s){H('Workspace name cannot be changed. Expected "'.concat(s,'" but found "').concat(e,'".'));return}let a=r[s]||{};p(a)}else H("Configuration must contain only one workspace. Found: ".concat(t.join(", ")))}catch(e){H("Invalid YAML: ".concat(e.message))}},ea=async()=>{O(!0),J(null),V(null);try{if(F)throw Error("Please fix YAML errors before saving");let e=S.ZP.load(w)||{},t=Object.keys(e);if(t.length>0&&t[0]!==s)throw Error('Workspace name cannot be changed. Expected "'.concat(s,'".'));r?(await (0,n.MB)(s,u),V("Workspace created successfully!"),setTimeout(()=>{o.push("/workspaces/".concat(s))},1500)):(await (0,n.eA)(s,u),V("Workspace updated successfully!"),k(u),er())}catch(e){console.error("Error saving workspace:",e),J(e)}finally{O(!1)}},el=async()=>{q(e=>({...e,deleting:!0,error:null}));try{await (0,n.zl)(s),V("Workspace deleted successfully!"),setTimeout(()=>{o.push("/workspaces")},1500)}catch(e){console.error("Error deleting workspace:",e),q(s=>({...s,deleting:!1,error:e}))}},en=()=>{q({showDialog:!1,deleting:!1,error:null})},ec=async()=>{await Promise.all([es(),er()])};if(!o.isReady)return(0,t.jsx)("div",{children:"Loading..."});let ei=r?"Create New Workspace | SkyPilot Dashboard":"Workspace: ".concat(s," | SkyPilot Dashboard");return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(x(),{children:(0,t.jsx)("title",{children:ei})}),(0,t.jsxs)(t.Fragment,{children:[(0,t.jsxs)("div",{className:"flex items-center justify-between mb-4 h-5",children:[(0,t.jsxs)("div",{className:"text-base flex items-center",children:[(0,t.jsx)(d(),{href:"/workspaces",className:"text-sky-blue hover:underline",children:"Workspaces"}),(0,t.jsx)("span",{className:"mx-2 text-gray-500",children:"›"}),(0,t.jsx)(d(),{href:r?"/workspace/new":"/workspaces/".concat(s),className:"text-sky-blue hover:underline",children:r?"New Workspace":s}),U&&(0,t.jsx)("span",{className:"ml-3 px-2 py-1 bg-yellow-100 text-yellow-800 text-xs rounded",children:"Unsaved changes"})]}),(0,t.jsxs)("div",{className:"text-sm flex items-center",children:[(R||z||$)&&(0,t.jsxs)("div",{className:"flex items-center mr-4",children:[(0,t.jsx)(g.Z,{size:15,className:"mt-0"}),(0,t.jsx)("span",{className:"ml-2 text-gray-500",children:z?"Saving...":"Loading..."})]}),(0,t.jsxs)("div",{className:"flex items-center space-x-4",children:[!r&&(0,t.jsxs)("button",{onClick:ec,disabled:R||z||$,className:"text-sky-blue hover:text-sky-blue-bright font-medium inline-flex items-center",children:[(0,t.jsx)(j.Z,{className:"w-4 h-4 mr-1.5"}),"Refresh"]}),!r&&"default"!==s&&(0,t.jsxs)("button",{onClick:()=>q({...G,showDialog:!0}),disabled:G.deleting||z,className:"text-red-600 hover:text-red-700 font-medium inline-flex items-center",children:[(0,t.jsx)(y.Z,{className:"w-4 h-4 mr-1.5"}),"Delete"]})]})]})]}),R?(0,t.jsxs)("div",{className:"flex justify-center items-center py-12",children:[(0,t.jsx)(g.Z,{size:24,className:"mr-2"}),(0,t.jsx)("span",{className:"text-gray-500",children:"Loading workspace configuration..."})]}):(0,t.jsxs)("div",{className:"space-y-6",children:[(0,t.jsx)(L.X,{error:Y,title:"Error",onDismiss:()=>J(null)}),(0,t.jsx)(Z,{message:I}),(0,t.jsxs)("div",{className:"grid grid-cols-1 lg:grid-cols-3 gap-6",children:[!r&&(0,t.jsx)("div",{className:"lg:col-span-1",children:(0,t.jsxs)(m.Zb,{className:"h-full",children:[(0,t.jsx)(m.Ol,{children:(0,t.jsx)(m.ll,{className:"text-base font-normal",children:(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsxs)("div",{children:[(0,t.jsx)("span",{className:"font-semibold",children:"Workspace:"})," ",s]}),(0,t.jsx)(M,{isPrivate:!0===b.private})]})})}),(0,t.jsxs)(m.aY,{className:"text-sm pb-2 flex-1",children:[(0,t.jsxs)("div",{className:"py-2 flex items-center justify-between",children:[(0,t.jsxs)("div",{className:"flex items-center text-gray-600",children:[(0,t.jsx)(C.QT,{className:"w-4 h-4 mr-2 text-gray-500"}),(0,t.jsx)("span",{children:"Clusters (Running / Total)"})]}),(0,t.jsx)("span",{className:"font-normal text-gray-800",children:$?"...":"".concat(K.runningClusterCount," / ").concat(K.totalClusterCount)})]}),(0,t.jsxs)("div",{className:"py-2 flex items-center justify-between border-t border-gray-100",children:[(0,t.jsxs)("div",{className:"flex items-center text-gray-600",children:[(0,t.jsx)(C.Vp,{className:"w-4 h-4 mr-2 text-gray-500"}),(0,t.jsx)("span",{children:"Managed Jobs"})]}),(0,t.jsx)("span",{className:"font-normal text-gray-800",children:$?"...":K.managedJobsCount})]})]}),(0,t.jsxs)("div",{className:"px-6 pb-6 text-sm pt-3",children:[(0,t.jsx)("h4",{className:"mb-2 text-xs text-gray-500 tracking-wider",children:"Enabled Infra"}),(0,t.jsx)("div",{className:"flex flex-wrap gap-x-4 gap-y-1",children:$?(0,t.jsx)("span",{className:"text-gray-500",children:"Loading..."}):K.clouds.length>0?K.clouds.map(e=>(0,t.jsxs)("div",{className:"flex items-center text-gray-700",children:[(0,t.jsx)(C.Ye,{className:"w-3.5 h-3.5 mr-1.5 text-green-500"}),(0,t.jsx)("span",{children:e})]},e)):(0,t.jsx)("span",{className:"text-gray-500 italic",children:"No enabled infrastructure"})}),(0,t.jsx)("div",{className:"mt-4",children:(0,t.jsx)(D,{workspaceName:s,config:b,enabledClouds:K.clouds})}),(0,t.jsx)(P,{workspaceConfig:b,allUsers:B})]})]})}),(0,t.jsx)("div",{className:r?"lg:col-span-3":"lg:col-span-2",children:(0,t.jsxs)(m.Zb,{className:"h-full flex flex-col",children:[(0,t.jsx)(m.Ol,{children:(0,t.jsx)(m.ll,{className:"text-base font-normal",children:r?"New Workspace YAML":"Edit Workspace YAML"})}),(0,t.jsx)(m.aY,{className:"flex-1 flex flex-col",children:(0,t.jsxs)("div",{className:"space-y-4 flex-1 flex flex-col",children:[F&&(0,t.jsx)(L.X,{error:F,onDismiss:()=>H(null)}),(0,t.jsxs)("div",{className:"flex-1 flex flex-col",children:[(0,t.jsxs)("p",{className:"text-sm text-gray-600 mb-3",children:["Configure infra-specific settings for this workspace. Leave empty to use all accessible infrastructure. Refer to"," ",(0,t.jsx)("a",{href:"https://docs.skypilot.co/en/latest/admin/workspaces.html#configuration",target:"_blank",rel:"noopener noreferrer",className:"text-blue-600",children:"SkyPilot Docs"})," ","for more details."]}),(0,t.jsxs)("div",{className:"mb-4",children:[(0,t.jsx)("h4",{className:"text-sm font-medium text-gray-700 mb-2",children:"Example configuration:"}),(0,t.jsx)("div",{className:"p-3 bg-gray-50 border rounded-lg",children:(0,t.jsx)("pre",{className:"text-xs font-mono text-gray-600 whitespace-pre-wrap",children:"".concat(s||"my-workspace",":\n private: true\n allowed_users:\n - user1@mydomain.com\n - user2@mydomain.com\n gcp:\n project_id: xxx\n disabled: false\n kubernetes:\n allowed_contexts:\n - context-1")})})]}),(0,t.jsx)(f.g,{value:w,onChange:e=>et(e.target.value),className:"font-mono text-sm flex-1 resize-none",style:{minHeight:"350px"},spellCheck:!1,placeholder:"# Enter workspace configuration in YAML format"}),(0,t.jsx)("div",{className:"flex justify-end space-x-3 pt-3 border-gray-200",children:(0,t.jsxs)(h.z,{onClick:ea,disabled:z||F||R,className:"inline-flex items-center bg-sky-600 hover:bg-sky-700 text-white",children:[(0,t.jsx)(N.Z,{className:"w-4 h-4 mr-1.5"}),z?"Applying...":"Apply"]})})]})]})})]})})]})]}),(0,t.jsx)(v.Vq,{open:G.showDialog,onOpenChange:en,children:(0,t.jsxs)(v.cZ,{className:"sm:max-w-md",children:[(0,t.jsxs)(v.fK,{className:"",children:[(0,t.jsx)(v.$N,{children:"Delete Workspace"}),(0,t.jsxs)(v.Be,{children:['Are you sure you want to delete workspace "',s,'"? This action cannot be undone.']})]}),G.error&&(0,t.jsx)(L.X,{error:G.error,title:"Deletion Failed",onDismiss:()=>q(e=>({...e,error:null}))}),(0,t.jsxs)(v.cN,{className:"",children:[(0,t.jsx)(h.z,{variant:"outline",onClick:en,disabled:G.deleting,children:"Cancel"}),(0,t.jsx)(h.z,{variant:"destructive",onClick:el,disabled:G.deleting,children:G.deleting?"Deleting...":"Delete"})]})]})})]})]})}}}]);
|