| ollama_catalog | R Documentation |
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.
ollama_catalog()
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.
A tibble with columns tag, family, size_gb,
description.
catalog <- ollama_catalog()
head(catalog)
# Filter to models that fit in 8 GB of VRAM.
catalog[catalog$size_gb <= 8, ]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.