How to List All Models Using Ollama?
The command ollama list is your go-to solution!
What Does ollama list Do?
The ollama list command provides a comprehensive list of all the models installed in your Ollama setup. This includes details about each model, such as its name, version, and any other metadata.
$ollama list NAME ID SIZE MODIFIED llama3.2:latest a80c4f17acd5 2.0 GB 20 hours ago
Explanation Of the Output
NAME: This column lists the name and tag of each model. In the example above, llama3.2:latest refers to a model named llama3.2 with the tag latest. The tag allows you to specify versions or different configurations of the same model.
ID: The ID column contains a unique identifier (UUID) for the model. In this case, a80c4f17acd5 is the identifier for the llama3.2:latest model. You can use this ID in various Ollama commands to target specific models.
SIZE: The size of the model is displayed in this column. Here, 2.0 GB indicates that the llama3.2:latest model takes up 2.0 gigabytes of disk space.
MODIFIED: This column shows the last time the model was modified. In the example above, the model was modified 20 hours ago. This helps you understand how recently the model was updated or modified.
No comments:
Post a Comment