Changelog
View SourceAll notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
This project uses Calendar Versioning with the format YYYY.MM.PATCH.
2025.12.4 (2025-12-26)
Features:
add wire.protocol and constraints metadata fields (#59) by mikehostetler
add hex_dry_run option and version bump commit to release workflow by mikehostetler
sort JSON keys for deterministic output (#51) by mikehostetler
sort JSON keys for deterministic output by mikehostetler
add git_hooks integration for code quality enforcement (#42) by mikehostetler
Bug Fixes:
Don't load env files if .env is a directory (#64) by sezaru
update model metadata for 12 provider(s) (#61) by github-actions[bot]
inherit custom config from app env in Runtime.compile/1 (#58) by Nils
update model metadata for 51 provider(s) (#57) by github-actions[bot]
round cost values to six decimal places in OpenRouter by mikehostetler
update model metadata for 5 provider(s) (#55) by github-actions[bot]
add fetch-tags option and debug output to release workflow by mikehostetler
fetch tags explicitly in release workflow by mikehostetler
update model metadata for 69 provider(s) (#50) by github-actions[bot]
disable git hooks in CI workflow by mikehostetler
use commit-message instead of invalid commit-message-path by mikehostetler
restrict llm_db.build and llm_db.pull tasks to llm_db project only (#49) by mikehostetler
Improvements:
- Add gemini-2.5-flash-image and gemini-2.5-flash-lite (#60) by Victor
2025.12.3 (2025-12-22)
Features:
add wire.protocol and constraints metadata fields (#59) by mikehostetler
add hex_dry_run option and version bump commit to release workflow by mikehostetler
sort JSON keys for deterministic output (#51) by mikehostetler
sort JSON keys for deterministic output by mikehostetler
add git_hooks integration for code quality enforcement (#42) by mikehostetler
Bug Fixes:
update model metadata for 12 provider(s) (#61) by github-actions[bot]
inherit custom config from app env in Runtime.compile/1 (#58) by Nils
update model metadata for 51 provider(s) (#57) by github-actions[bot]
round cost values to six decimal places in OpenRouter by mikehostetler
update model metadata for 5 provider(s) (#55) by github-actions[bot]
add fetch-tags option and debug output to release workflow by mikehostetler
fetch tags explicitly in release workflow by mikehostetler
update model metadata for 69 provider(s) (#50) by github-actions[bot]
disable git hooks in CI workflow by mikehostetler
use commit-message instead of invalid commit-message-path by mikehostetler
restrict llm_db.build and llm_db.pull tasks to llm_db project only (#49) by mikehostetler
Improvements:
- Add gemini-2.5-flash-image and gemini-2.5-flash-lite (#60) by Victor
2025.12.2 (2025-12-17)
Features:
add hex_dry_run option and version bump commit to release workflow by mikehostetler
sort JSON keys for deterministic output (#51) by mikehostetler
sort JSON keys for deterministic output by mikehostetler
add git_hooks integration for code quality enforcement (#42) by mikehostetler
Bug Fixes:
update model metadata for 5 provider(s) (#55) by github-actions[bot]
add fetch-tags option and debug output to release workflow by mikehostetler
fetch tags explicitly in release workflow by mikehostetler
update model metadata for 69 provider(s) (#50) by github-actions[bot]
disable git hooks in CI workflow by mikehostetler
use commit-message instead of invalid commit-message-path by mikehostetler
restrict llm_db.build and llm_db.pull tasks to llm_db project only (#49) by mikehostetler
2025.12.1 (2025-12-17)
Features:
add hex_dry_run option and version bump commit to release workflow by mikehostetler
sort JSON keys for deterministic output (#51) by mikehostetler
sort JSON keys for deterministic output by mikehostetler
add git_hooks integration for code quality enforcement (#42) by mikehostetler
Bug Fixes:
add fetch-tags option and debug output to release workflow by mikehostetler
fetch tags explicitly in release workflow by mikehostetler
update model metadata for 69 provider(s) (#50) by github-actions[bot]
disable git hooks in CI workflow by mikehostetler
use commit-message instead of invalid commit-message-path by mikehostetler
restrict llm_db.build and llm_db.pull tasks to llm_db project only (#49) by mikehostetler
2025.12.0 - 2025-12-17
Changed
- Updated model data from upstream sources (includes Gemini 3 Pro Preview)
- JSON snapshot keys are now sorted for deterministic output (#51)
- Added git_hooks integration for code quality enforcement (#42)
- Restricted
llm_db.buildandllm_db.pulltasks to llm_db project only (#49)
[2025.11.18-preview] - 2025-11-18
Added
- New models available: GPT 5.1 (OpenAI) and Gemini 3 (Google)
- Provider alias system to enable single implementation handling models from multiple LLMDB providers
- New
alias_offield in Provider struct points aliased provider to primary implementation LLMDB.Store.models/1now searches aliased providers when looking up by provider IDLLMDB.Store.model/2normalizes provider field back to requested provider for aliased models- First implementation:
google_vertex_anthropicaliases togoogle_vertexfor Claude models on Vertex AI
- New
provider_model_idfield for AWS Bedrock inference profile models that require API-specific identifiers- Enables models to use canonical IDs (e.g.,
anthropic.claude-haiku-4-5-20251001-v1:0) while making API calls with inference profile prefixes (e.g.,us.anthropic.claude-haiku-4-5-20251001-v1:0) - Addresses AWS requirement: "Invocation of model ID [...] with on-demand throughput isn't supported. Retry your request with the ID or ARN of an inference profile"
- Applied to: Claude Haiku 4.5, Claude Sonnet 4.5, Claude Opus 4.1, Llama 3.3 70B, Llama 3.2 3B
- Enables models to use canonical IDs (e.g.,
.env.examplefile for environment variable configuration
Changed
- Snapshot JSON is now pretty-printed for easier diffing
- Updated Zoi dependency to version 0.10.7
- Updated Dotenvy dependency to version 1.1
- ModelsDev transformer now auto-sets
streaming.tool_calls: truewhentool_call: true- Reflects reality: 99%+ of tool-capable models support streaming tool calls
- Eliminates need for model-specific TOML overrides for common case
- Rare exceptions can override with
streaming.tool_calls: falsein TOML
Fixed
- Claude Opus 4.1: Changed
provider_model_idfromglobal.tous.prefix - Opus 4.1 is only available withus.inference profile on AWS Bedrock, notglobal.like Haiku and Sonnet - Claude Haiku 4.5 and Sonnet 4.5: Override
tools.strict=falseto disable object generation hack - waiting for native Anthropic JSON support instead - Model spec parsing now handles ambiguous formats (specs with both
:and@separators) by attempting provider validation to determine the correct format - Removed overly strict character validation that rejected
@in model IDs when using colon format and:in model IDs when using @ format
[2025.11.14-preview] - 2025-11-14
Added
LLMDB.Model.format_spec/1function for converting model struct to provider:model string format- Zai Coder provider and GLM models support
- Enhanced cost schema with granular multimodal and reasoning pricing fields:
reasoning: Cost per 1M reasoning/thinking tokens for models like o1, Grok-4input_audio/output_audio: Separate audio input/output costs (e.g., Gemini 2.5 Flash, Qwen-Omni)input_video/output_video: Video input/output cost support for future models
- ModelsDev source transformer now captures all cost fields from models.dev data
- OpenRouter source transformer maps
internal_reasoningfield toreasoningcost
Changed
- Updated Zoi dependency to version 0.10.6
- Refactored loader to use dynamic snapshot retrieval
- Disabled schema validation in snapshot.json and TOML source files
Fixed
- Cleaned up code quality issues
- Fixed application startup crash (
ArgumentError: not an already existing atom) caused by race condition between build task and snapshot loading - Fixed flaky tests in
LLMDB.EngineOverrideTestby ensuring test isolation from global config