diff --git a/docs/getting-started.md b/docs/getting-started.md index 3d02c928..3c19b00a 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -104,6 +104,12 @@ Before the `pull` or `push` command, you need to login the registry: $ modctl login -u username -p password example.registry.com ``` +Logout from a registry: + +```shell +$ modctl logout example.registry.com +``` + Pull the model artifact from the registry: ```shell @@ -168,6 +174,22 @@ $ modctl upload model-00001-of-00003.safetensors --repo registry.com/models/llam ``` +### Tag + +Tag an existing model artifact with a new reference: + +```shell +$ modctl tag registry.com/models/llama3:v1.0.0 registry.com/models/llama3:v1.0.1 +``` + +### Inspect + +Inspect metadata for a model artifact: + +```shell +$ modctl inspect registry.com/models/llama3:v1.0.0 +``` + ### Cleanup Delete the model artifact in the local storage: