Skip to main content

ollama-advisor

A Python library that recommends Ollama models you can run on your machine, based on system specs (RAM, GPU VRAM) and use case (coding, reasoning, vision, embedding, audio, general). It also supports downloading, running, and stopping models.

Works on Mac, Windows, Linux, and Google Colab.

Korean documentation: README.ko.md

Installation

pip install ollama-advisor

Local development install:

git clone https://github.com/dschloe/ollama-advisor.git
cd ollama-advisor
pip install -e ".[dev]"

Quick Start

import ollama_advisor as oa

oa.recommend()                       # Full recommendations (returns a DataFrame)
oa.recommend(purpose="coding")       # Filter for coding models only
oa.pull_model("qwen2.5-coder:7b")    # Download a model
oa.run_model("qwen2.5-coder:7b", prompt="hello")  # Single-shot (non-interactive) run
oa.stop_model("qwen2.5-coder:7b")    # Stop / unload a running model
oa.list_installed()                  # List locally installed models

Purpose examples

purpose= Use when you want… Example models (if they fit your RAM)
"all" Every runnable model on this machine (default — no filter)
"general" Chat, writing, everyday tasks llama3.2, gemma2, mistral
"coding" Code generation, debugging, SQL qwen2.5-coder, codellama, deepseek-coder
"reasoning" Math, logic, chain-of-thought deepseek-r1, qwq
"vision" Image understanding, multimodal llava, llama3.2-vision
"embedding" Vector search / RAG indexes nomic-embed-text, mxbai-embed-large
"audio" Speech-to-text whisper
# Top 5 coding models that fit this machine
oa.recommend(purpose="coding", top_n=5)

# Reasoning models, return as a plain list instead of DataFrame
oa.recommend(purpose="reasoning", as_dataframe=False)

# Refresh catalog from ollama.com, then filter for vision
oa.recommend(purpose="vision", force_refresh=True)

# Embedding-only models (excludes general chat models)
oa.recommend(purpose="embedding")

CLI:

ollama-advisor recommend --purpose coding
ollama-advisor pull qwen2.5-coder:7b
ollama-advisor run qwen2.5-coder:7b --prompt "hello"
ollama-advisor stop qwen2.5-coder:7b
ollama-advisor list
ollama-advisor ps
ollama-advisor specs
ollama-advisor snapshot --force-refresh

Daily catalog snapshot

GitHub Actions (catalog-daily.yml) crawls ollama.com/library once per day and commits CSV/JSON under data/catalog/.

ollama-advisor snapshot --output data/catalog --force-refresh

Prerequisites: Ollama

recommend() and get_system_specs() work without Ollama installed.
pull_model, run_model, stop_model, list_installed, and related commands require a local Ollama server.

  • Download: https://ollama.com/download
  • macOS: brew install ollama, then ollama serve (or launch the app)
  • Windows: run the installer, then start the tray app
  • Linux: curl -fsSL https://ollama.com/install.sh | sh

If the Ollama server is not running, an OllamaError is raised with platform-specific setup instructions (error messages in the library may be localized).

Google Colab

recommend() works without Ollama. For pull_model / run_model / list_installed, call setup_colab_ollama() once per runtime:

!pip install -q ollama-advisor

import ollama_advisor as oa

# Recommendations — no Ollama server needed
oa.recommend(purpose="coding", top_n=5)

# Install + start Ollama in this Colab VM (installs zstd, then Ollama, then serve)
oa.setup_colab_ollama()

# Then pull / run (small models work best on free Colab RAM)
oa.pull_model("qwen2.5-coder:0.5b")
print(oa.run_model("qwen2.5-coder:0.5b", prompt="hello"))

Colab does not keep Ollama running after the runtime disconnects — models and server state reset.

In notebooks and Colab, recommend() automatically displays a scrollable HTML table.

How it works

Module Role
system.py Detect RAM/GPU/platform; compute usable memory (80% of available)
catalog.py Crawl ollama.com/library; cache at ~/.ollama_advisor_cache.json (6h TTL)
purpose.py Classify models: coding / reasoning / vision / embedding / audio / general
core.py recommend() — combine specs, catalog, and purpose
colab.py setup_colab_ollama() — install/start Ollama in Google Colab only
ctl.py Wrapper around the official ollama Python client

Memory estimate (approx. 4-bit quantization): required_gb = billions × 0.6 + 1.0

Development & testing

pip install -e ".[dev]"
pytest tests/ -v

CI (test.yml) runs on Ubuntu / Windows / macOS with Python 3.9 and 3.11. Network crawling is mocked in tests.

PyPI publishing (maintainers)

1. PyPI project

  1. Create an account at pypi.org
  2. Confirm the name ollama-advisor is available (alternatives: ollama-model-advisor)
  3. The project is created on first upload, or when using Trusted Publisher

2. Trusted Publisher (OIDC)

  1. PyPI → Account settings → Publishing → Add a new pending publisher
  2. Configure:
    • PyPI project name: ollama-advisor
    • Owner: GitHub user or organization
    • Repository name: ollama-advisor
    • Workflow name: publish.yml
    • Environment name: pypi (create a pypi environment in GitHub repo Settings → Environments)
  3. Optionally add deployment protection rules under GitHub → Settings → Environments → pypi

The workflow in .github/workflows/publish.yml uses pypa/gh-action-pypi-publish with OIDC—no API token required in CI.

3. Release

Automatic (preferred): bump version in pyproject.toml (and __version__), merge to main.
Workflow release-on-version.yml creates tag vX.Y.Z + GitHub Release → publish.yml uploads to PyPI.

Manual fallback:

git tag v0.1.2
git push origin v0.1.2

Publish a GitHub Release for that tag (or let the automation create it). Then:

  1. publish.yml runs pytest as a gate
  2. On success, uploads wheel/sdist to PyPI

Manual local upload (debugging only):

python -m build
twine upload dist/*

License

MIT — see LICENSE

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ollama_advisor-0.1.3.tar.gz (73.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ollama_advisor-0.1.3-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file ollama_advisor-0.1.3.tar.gz.

File metadata

  • Download URL: ollama_advisor-0.1.3.tar.gz
  • Upload date:
  • Size: 73.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ollama_advisor-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e35a14f24ecc0747110879175dacc230e3523b8a7f8637eadd3e6e48e5d95c76
MD5 19993f626bf5cf6dea032a86b9e30ed2
BLAKE2b-256 de90723d4b3e17f9d0e01206baf012599734dc6644afc285bc66ba0d93f149b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ollama_advisor-0.1.3.tar.gz:

Publisher: publish.yml on dschloe/ollama-advisor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ollama_advisor-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: ollama_advisor-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ollama_advisor-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 be317806fd05e80567a2a8e2e258d1c6d1a216e248e0ec94cd91a5acc7ca7acd
MD5 dd5697a161890368c170cacbfacd6651
BLAKE2b-256 5cdabd1fffe35654420a2d6c3b8fd36e46a814b36533cdca8d2fbd8b9ec842ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for ollama_advisor-0.1.3-py3-none-any.whl:

Publisher: publish.yml on dschloe/ollama-advisor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page