Local models
Get models
Pull from the catalog, or import any GGUF already on your disk. Both end in the same registry.
See what you have, and what’s available
conifer models listInstalled models first (name, quantization, size, architecture, path), then the download catalog.
Pull from the catalog
conifer models pull <model-name>Takes a catalog name from conifer models list. The download resumes if interrupted, is verified against its published SHA-256, and lands atomically. This is the only model command that downloads weights.
Import a GGUF
conifer models import <path>.gguf --name <model-name>Registers the file in place; it is never copied. Leave --name off and the file stem becomes the name. The quantization is read from the GGUF header. Which architectures the engine runs is on Reading a model; a file it can’t run is refused with a clear error (exit 64) and nothing is installed.
Delete
conifer models remove <model-name> --yesA pulled model’s weights are deleted from disk. An imported model is unregistered; your file stays where it was. Without --yes it asks first.