Skip to content

Commit 1fc3344

Browse files
authored
Merge pull request #22332 from aevesdocker/dmr-ex-fix
dmr-ex-fix
2 parents 9020de2 + 6e119b9 commit 1fc3344

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/manuals/desktop/features/model-runner.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Output:
8080

8181
```text
8282
Downloaded: 257.71 MB
83-
Model ai/smo11m2 pulled successfully
83+
Model ai/smollm2 pulled successfully
8484
```
8585

8686
### List available models
@@ -105,7 +105,7 @@ Run a model and interact with it using a submitted prompt or in chat mode.
105105
#### One-time prompt
106106

107107
```console
108-
$ docker model run ai/smo11m2 "Hi"
108+
$ docker model run ai/smollm2 "Hi"
109109
```
110110

111111
Output:
@@ -117,7 +117,7 @@ Hello! How can I assist you today?
117117
#### Interactive chat
118118

119119
```console
120-
docker model run ai/smo11m2
120+
docker model run ai/smollm2
121121
```
122122

123123
Output:
@@ -216,7 +216,7 @@ Examples of calling an OpenAI endpoint (`chat/completions`) from within another
216216
curl http://model-runner.docker.internal/engines/llama.cpp/v1/chat/completions \
217217
-H "Content-Type: application/json" \
218218
-d '{
219-
"model": "ai/smo11m2",
219+
"model": "ai/smollm2",
220220
"messages": [
221221
{
222222
"role": "system",
@@ -242,7 +242,7 @@ curl --unix-socket $HOME/.docker/run/docker.sock \
242242
localhost/exp/vDD4.40/engines/llama.cpp/v1/chat/completions \
243243
-H "Content-Type: application/json" \
244244
-d '{
245-
"model": "ai/smo11m2",
245+
"model": "ai/smollm2",
246246
"messages": [
247247
{
248248
"role": "system",
@@ -269,7 +269,7 @@ Afterwards, interact with it as previously documented using `localhost` and the
269269
curl http://localhost:12434/engines/llama.cpp/v1/chat/completions \
270270
-H "Content-Type: application/json" \
271271
-d '{
272-
"model": "ai/smo11m2",
272+
"model": "ai/smollm2",
273273
"messages": [
274274
{
275275
"role": "system",

0 commit comments

Comments
 (0)