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! ``` 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:**