Changelog¶
All notable changes to ModelDock.
Based on Keep a Changelog and Semantic Versioning.
0.1.3 - 2026-07-19¶
Dynamic catalog: replaced static catalog.json with live scraping of ollama.com.
Added¶
OllamaLibraryRegistryadapter — scrapesollama.com/libraryfor the full model list, auto-detects categories and capabilities, and caches locally for offline usecatalog_sourceconfig setting ("auto"|"ollama"|"bundled") to control which registry is usedMODELDOCK_CATALOG_SOURCEenvironment variable support- Local catalog cache (
<cache_dir>/catalog_cache.json) with 24-hour TTL
Changed¶
ModelManagernow defaults toOllamaLibraryRegistry(dynamic) instead ofBundledRegistry(static)- Auto-detection rules: model name patterns and HTML capability tags determine
CategoryandCapability
Removed¶
- Deleted
src/modeldock/data/catalog.json— no longer needed
Tests¶
- 32 new tests for
OllamaLibraryRegistry
0.1.2 - 2026-07-19¶
Patch fix for catalog.json not being included in the installed package.
Fixed¶
- Catalog data missing — added
[tool.setuptools.package-data]topyproject.toml
0.1.1 - 2026-07-19¶
Patch release hardening the Ollama runtime and SDK.
Added¶
modeldock.run()SDK entry point for single-prompt completions and interactive REPLRuntimePort.status()reporting runtime availability and execution deviceCachePort.path()/FilesystemCache.path()/CacheService.path()returning the real cache directoryModelSpec.from_ref/ModelInfo.from_reffallbacks for installed models not in catalogPullResult.already_presentflag;BaseRuntime.pull()is now idempotentModelRef.is_cloudto identify cloud/subscription models
Changed¶
- SDK functions now route the
backendargument to the selected runtime info()surfaces installed tags for locally-installed modelsModelManager.update()now requiresconfirm=TrueCachePort.clean()are safe by default and acceptforce=True
Fixed¶
OllamaRuntime.remove()no longer hangs on cloud/subscription models- Catalog fallback for
load/info/installwhen model is installed but absent from bundled catalog
0.1.0 - 2026-07-18¶
Initial pre-release. Documentation and package skeleton only.
Added¶
- Project documentation set
- Package skeleton following Clean Architecture
pyproject.tomlwith runtime/dev dependencies- Public SDK surface and Typer-based CLI
- GitHub release workflow
- Contributor community files