CLI app to manage Ollama models.
- List and Download Remote models from 🦙 Ollama library or 🤗 Hugging Face
- Delete existing Ollama models
- Launch models in Streamlit UI
- Fuzzy Search
pip install ollama-manager
# OR
pipx install ollama-manager
For development: installs app in editable mode
make setup
olm pull
Pull Hugging Face models:
olm pull -hf
# With query:
olm pull -hf -q llama3.2
# With limit:
olm pull -hf -q llama3.2 -l 10
Delete a single model
olm rm
Delete multiple models
olm rm -m
Delete model without confirmation prompt:
olm rm -y
Run the selected model on Ollama terminal UI:
olm run
Run models in a Streamlit UI:
You need to install optional dependencies for this:
pip install ollama-manager[ui]
then use the following command to select the model:
# For Text Models
olm run -ui text
# For Vision Models
olm run -ui vision
olm --help
olm <sub-command> --help