From 6395937e03fc191b59a8bfb988d68729eee3be7d Mon Sep 17 00:00:00 2001 From: arcticfly Date: Wed, 8 Oct 2025 10:07:48 -0700 Subject: [PATCH 1/2] Capitalize CLI --- docs/fundamentals/art-backend.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fundamentals/art-backend.mdx b/docs/fundamentals/art-backend.mdx index 31f2ce51..ea9413c3 100644 --- a/docs/fundamentals/art-backend.mdx +++ b/docs/fundamentals/art-backend.mdx @@ -102,7 +102,7 @@ backend = await SkyPilotBackend.initialize_cluster( ) ``` -When a training job is finished, you can shut down a cluster either through code or the cli. +When a training job is finished, you can shut down a cluster either through code or the CLI. **Code:** From 4668cff40f147145b48433bef78069b4965962fc Mon Sep 17 00:00:00 2001 From: arcticfly Date: Wed, 8 Oct 2025 10:11:00 -0700 Subject: [PATCH 2/2] Remove await --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 103f7140..5579c59d 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ model = art.TrainableModel( backend = ServerlessBackend( api_key="your_wandb_api_key" ) -await model.register(backend) +model.register(backend) # Edit and iterate in minutes, not hours! ```