Skip to content

yankeexe/ollama-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🦙 Ollama Manager

Python Version Downloads

CLI app to manage Ollama models.

⚡️ Features

  • List and Download Remote models from Ollama library
  • Delete existing Ollama models
  • Launch models in Streamlit UI
  • Fuzzy Search

🚀 Installation

pip install ollama-manager

# OR

pipx install ollama-manager

For development: installs app in editable mode

make setup

✨ Usage

Pull Remote Model

olm pull

Delete Local Model/s

Delete a single model

olm rm

Delete multiple models

olm rm -m

Delete model without confirmation prompt:

olm rm -y

Run selected model

Run the selected model on Ollama terminal UI:

olm run

Run models in a Streamlit UI:

Ollama Manager 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

Getting Help

olm --help

olm <sub-command> --help