models -t <IP:PORT>
List all models on a remote instance. Shows model names, sizes, quantization levels, and families.
-t 1.2.3.4:11434 --geo --notify
β
Verified
models --pull TARGET MODEL
Pull model info from a target. Retrieves detailed manifest data.
--pull 1.2.3.4:11434 gemma:2b
β
Verified
models --analyze TARGET MODEL
Deep analyze a specific model via /api/show. Returns full Modelfile, parameters, template, and system prompt.
--analyze 1.2.3.4:11434 gemma:2b
β
Verified
deploy -m MODEL -t <IP>
Deploy (pull) a model onto a remote instance via /api/pull. Can deploy to all saved instances with --all.
-m gemma:2b -t 1.2.3.4:11434
--all --geo --notify
β
Verified
push -t <IP> -m MODEL:TAG
Push a model from a remote instance to a registry via /api/push. Requires registry authentication.
-t 1.2.3.4:11434 -m mymodel:tag --notify
β
Verified
create -t <IP> -m MODEL [--modelfile|--from]
Create a model via /api/create. Provide a Modelfile or base model name to create from.
-t 1.2.3.4:11434 -m newmodel
--modelfile ./Modelfile --from base:latest
β
Verified
copy -t <IP> -s SRC -d DST
Copy a model within a remote instance via /api/copy. Useful for model cloning.
-t 1.2.3.4:11434 -s old:latest
-d new:latest --notify
β
Verified
remove -t <IP> -m MODEL:TAG
Delete a model from a remote instance via /api/delete. Irreversible.
-t 1.2.3.4:11434 -m model:tag --notify
β
Verified
ps -t <IP:PORT>
List currently running models on the instance via /api/ps. Shows name, size, and expiry.
-t 1.2.3.4:11434 --notify
β
Verified