Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down