diff --git a/content/manuals/ai/model-runner/_index.md b/content/manuals/ai/model-runner/_index.md index bda21d4d1980..763d3eb1d282 100644 --- a/content/manuals/ai/model-runner/_index.md +++ b/content/manuals/ai/model-runner/_index.md @@ -104,7 +104,9 @@ Models are cached locally. {{< tab name="From Docker Desktop">}} 1. Select **Models** and select the **Docker Hub** tab. -2. Find the model of your choice and select **Pull**. +1. Find the model of your choice and select **Pull**. + +![screencapture of the Docker Hub view](./images/dmr-catalog.png) {{< /tab >}} {{< tab name="From the Docker CLI">}} @@ -119,8 +121,10 @@ Use the [`docker model pull` command](/reference/cli/docker/model/pull/). {{< tabs group="release" >}} {{< tab name="From Docker Desktop">}} -Select **Models** and select the **Local** tab and click the play button. -The interactive chat screen opens. +1. Select **Models** and select the **Local** tab +1. Click the play button. The interactive chat screen opens. + +![screencapture of the Local view](./images/dmr-run.png) {{< /tab >}} {{< tab name="From the Docker CLI" >}} @@ -139,6 +143,8 @@ To troubleshoot potential issues, display the logs: Select **Models** and select the **Logs** tab. +![screencapture of the Models view](./images/dmr-logs.png) + {{< /tab >}} {{< tab name="From the Docker CLI">}} @@ -153,7 +159,7 @@ Use the [`docker model logs` command](/reference/cli/docker/model/logs/). > > This works for any Container Registry supporting OCI Artifacts, not only Docker Hub. -You can tag existing models with a new name and publish them under a different namespace and repository: +You can tag existing models with a new name and publish them under a different namespaceand repository: ```console # Tag a pulled model under a new name diff --git a/content/manuals/ai/model-runner/images/dmr-catalog.png b/content/manuals/ai/model-runner/images/dmr-catalog.png new file mode 100644 index 000000000000..15d8bd04df11 Binary files /dev/null and b/content/manuals/ai/model-runner/images/dmr-catalog.png differ diff --git a/content/manuals/ai/model-runner/images/dmr-logs.png b/content/manuals/ai/model-runner/images/dmr-logs.png new file mode 100644 index 000000000000..e2b2289e9886 Binary files /dev/null and b/content/manuals/ai/model-runner/images/dmr-logs.png differ diff --git a/content/manuals/ai/model-runner/images/dmr-run.png b/content/manuals/ai/model-runner/images/dmr-run.png new file mode 100644 index 000000000000..c12b3bd5fdd4 Binary files /dev/null and b/content/manuals/ai/model-runner/images/dmr-run.png differ