Skip to content
Merged
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
16 changes: 16 additions & 0 deletions content/manuals/ai/model-runner.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,22 @@

The models also display in the Docker Desktop Dashboard.

#### Pull from Hugging Face

You can also pull GGUF models directly from [Hugging Face](https://huggingface.co/models?library=gguf).

Check warning on line 101 in content/manuals/ai/model-runner.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.Acronyms] 'GGUF' has no definition. Raw Output: {"message": "[Docker.Acronyms] 'GGUF' has no definition.", "location": {"path": "content/manuals/ai/model-runner.md", "range": {"start": {"line": 101, "column": 19}}}, "severity": "WARNING"}

```console
$ docker model pull hf.co/<model-you-want-to-pull>
```

For example:

```console
$ docker model pull hf.co/bartowski/Llama-3.2-1B-Instruct-GGUF
```

Pulls the [bartowski/Llama-3.2-1B-Instruct-GGUF](https://huggingface.co/bartowski/Llama-3.2-1B-Instruct-GGUF).

Check warning on line 113 in content/manuals/ai/model-runner.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.Acronyms] 'GGUF' has no definition. Raw Output: {"message": "[Docker.Acronyms] 'GGUF' has no definition.", "location": {"path": "content/manuals/ai/model-runner.md", "range": {"start": {"line": 113, "column": 44}}}, "severity": "WARNING"}

### List available models

Lists all models currently pulled to your local environment.
Expand Down