File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed
content/manuals/desktop/features Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ Hello! How can I assist you today?
123123#### Interactive chat
124124
125125``` console
126- docker model run ai/smollm2
126+ $ docker model run ai/smollm2
127127```
128128
129129Output:
@@ -140,12 +140,27 @@ Chat session ended.
140140>
141141> You can also use chat mode in the Docker Desktop Dashboard when you select the model in the ** Models** tab.
142142
143- ### Push a model
143+ ### Upload a model to Docker Hub
144+
145+ Use the command below to push your model to Docker Hub:
146+
147+ ``` console
148+ $ docker model push < namespace> /< model>
149+ ```
150+
151+ ### View the logs
152+
153+ Fetch logs from the Docker Model Runner to monitor activity, debug issues, or inspect inference behavior.
144154
145155``` console
146- docker model push <namespace>/<model>
156+ $ docker model logs
147157```
148158
159+ The following flags are accepted:
160+
161+ - ` -f ` /` --follow ` : View logs with real-time streaming
162+ - ` --no-engines ` : Exclude inference engine logs from the output
163+
149164### Remove a model
150165
151166Removes a downloaded model from your system.
You can’t perform that action at this time.
0 commit comments