ollama_catalog: Curated catalog of Ollama models useful for screening

View source: R/catalog.R

ollama_catalogR Documentation

Curated catalog of Ollama models useful for screening

Description

Returns a small tibble of popular instruction-tuned models with approximate Q4_K_M-quantised disk sizes and a one-line description. Not exhaustive; the full Ollama library is at https://ollama.com/library. Users can still pull any tag with pull_model() regardless of whether it's in this catalog.

Usage

ollama_catalog()

Details

The list is intentionally short and opinionated; it favours models that behave well on screening prompts. Update this in the package as the Ollama ecosystem evolves.

Value

A tibble with columns tag, family, size_gb, description.

Examples

catalog <- ollama_catalog()
head(catalog)
# Filter to models that fit in 8 GB of VRAM.
catalog[catalog$size_gb <= 8, ]

screenllm documentation built on Sept. 24, 2026, 5:11 p.m.