Discover Models¶
Browse, search, and recommend models from the dynamic catalog.
Browse the Catalog¶
Search by Name, Capability, or Category¶
# Search by keyword
results = md.search("coding")
# Search by capability
results = md.search("vision")
# Search by category
results = md.search("embedding")
Get Model Info¶
Get Recommendations¶
# Guided pick for a specific task
models = md.recommend(task="coding")
models = md.recommend(task="vision")
List Categories¶
What's Installed Locally¶
Dynamic Catalog¶
ModelDock scrapes ollama.com/library for a live model catalog, cached locally for 24 hours. New models appear automatically after catalog refresh.
Catalog Source¶
Control which registry is used:
| Value | Behavior |
|---|---|
auto | Try dynamic, fallback to bundled (default) |
ollama | Dynamic only — requires internet |
bundled | Static catalog.json only — fully offline |
Set via config or MODELDOCK_CATALOG_SOURCE env var.
Next Steps¶
- Install & Manage — download and manage models
- Configuration — change catalog source