feat: add current-generation models across providers (v0.5.0) - #4
Merged
Merged
Conversation
Registry grows 73 -> 101 models across 18 providers. New models (28): - Anthropic: claude-opus-5, claude-sonnet-5, claude-fable-5-1, claude-fable-5, claude-opus-4-8 - OpenAI: gpt-6-astra, gpt-5.6-sol, gpt-5.6-terra, gpt-5.6-luna - Z.AI: glm-5.3, glm-5.3-flash, glm-5.2 - Moonshot: kimi-k3 - Qwen: qwen3.8-max, qwen3.8-flash, qwen3.8-27b, qwen3.8-2.4t-a95b - Google: gemini-3.8-flash, gemini-3.7-flash, gemini-3.5-flash-lite - xAI: grok-4.6, grok-4.5, grok-4.3 - DeepSeek: deepseek-v4.1-flash, deepseek-v4-pro-0813 - Mistral: mistral-medium-3-5 - NVIDIA: nemotron-3.5-lightning, nemotron-3-ultra-550b-a55b Specs sourced from the live OpenRouter model API cross-checked against first-party provider docs. Where an aggregator prices a model differently from the primary provider, the difference is recorded as a provider-level cost_per_million_tokens override rather than flattened (gpt-5.6-sol). Data corrections: - gpt-5.5, gpt-5.5-pro: max_tokens was 1049999 (context window minus one) rather than the 128000 output cap; added missing knowledge_cutoff, and cached_input for gpt-5.5 - minimax-m3: context_window 512000 contradicted its own description; the model serves 1048576 - qwen3.7-plus: model_name read "Qwen 3.6 Plus" - claude-opus-4-6-fast: marked deprecated -- fast mode is no longer offered on Opus 4.6 or 4.7, only on Opus 5 and Opus 4.8 Superseded-but-still-served models are deliberately NOT marked deprecated: the schema defines that field as deprecation by the provider, and every other entry was verified as still served. Package maintenance: - packages/typescript/src/index.ts: the hand-maintained named-export list had drifted (72 exports for 73 models). Regenerated from models/*.yaml after verifying the naming rule reproduces all existing entries exactly. - packages/python __init__.py: added the new models to the curated constants list. It remains a subset, not a full mirror. Both packages bumped to 0.5.0. Co-Authored-By: gl1tch <gl1tch.engram@protonmail.com> Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Registry grows 73 → 101 models across 18 providers, and both packages bump to 0.5.0.
New models (28)
Specs come from the live OpenRouter model API cross-checked against first-party provider docs. Where an aggregator prices a model differently from the primary provider, that is recorded as a provider-level
cost_per_million_tokensoverride rather than flattened into one number (seegpt-5.6-sol, where OpenAI's published rate and OpenRouter's differ).Data corrections
gpt-5.5,gpt-5.5-pro—max_tokenswas1049999(the context window minus one) rather than the real128000output cap. Added the missingknowledge_cutoff, pluscached_inputforgpt-5.5. Verified against OpenAI docs; thegpt-5.4entries already had this right.minimax-m3—context_window: 512000contradicted the entry's own description. The model serves1048576.qwen3.7-plus—model_nameread "Qwen 3.6 Plus".claude-opus-4-6-fast— markeddeprecated. Fast mode is no longer offered on Opus 4.6 or 4.7; it is now limited to Opus 5 and Opus 4.8.On deprecations
Superseded-but-still-served models are deliberately not marked deprecated. The schema defines that field as deprecation by the provider, and every other entry was verified as still being served. Marking working models would make downstream consumers hide them.
Package maintenance
packages/typescript/src/index.ts— the hand-maintained named-export list had drifted (72 exports for 73 models). Regenerated frommodels/*.yaml, after confirming the naming rule reproduces all 72 existing entries byte-exact.packages/python/.../__init__.py— added the new models to the curated constants list. It remains a curated subset rather than a full mirror, as before.Verification
All four
validate.ymljobs were run locally before pushing, plus two extra checks:validate:models/validate:providersgit diff --exit-codeongenerated/)tsc --noEmitbuild_registry.py+ pydantic checkModelMetadataregistry.jsonare semantically identicalRelease
After merge, publishing is triggered by tags:
typescript-v0.5.0→ npm,python-v0.5.0→ PyPI.🤖 Generated with Claude Code