feat(whispering): update Anthropic model list to current Claude lineup#1659
Open
domdomegg wants to merge 1 commit intoEpicenterHQ:mainfrom
Open
feat(whispering): update Anthropic model list to current Claude lineup#1659domdomegg wants to merge 1 commit intoEpicenterHQ:mainfrom
domdomegg wants to merge 1 commit intoEpicenterHQ:mainfrom
Conversation
Aligns the transformation-step model picker (and the README's provider section) with the current Claude models listed at https://platform.claude.com/docs/en/about-claude/models/overview. Added: - claude-opus-4-6, claude-sonnet-4-6 (current recommended generation) - claude-opus-4-5-20251101, claude-opus-4-5 (missing from the 4.5 row) Removed (retired on 2026-02-19 per model-deprecations page - API calls to these now fail): - claude-3-7-sonnet-20250219, claude-3-7-sonnet-latest - claude-3-5-haiku-20241022, claude-3-5-haiku-latest Kept: - claude-3-haiku-20240307 is deprecated (retires 2026-04-20) but still callable; comment updated to reflect the retirement date. Also updated the Anthropic API key URL in the README to the current platform.claude.com host.
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.
Summary
Aligns Whispering's Anthropic model dropdown (in the transformation-step configuration) with the current list of Claude models at platform.claude.com/docs/en/about-claude/models/overview and the model-deprecations page.
Two problems today:
claude-opus-4-6,claude-sonnet-4-6) that Anthropic now recommends, or Claude Opus 4.5 (claude-opus-4-5). Users setting up LLM transformations have to manually edit the accelerator JSON to get at the flagship models.claude-3-7-sonnet-20250219andclaude-3-7-sonnet-latestclaude-3-5-haiku-20241022andclaude-3-5-haiku-latestChanges
apps/whispering/src/lib/constants/inference.ts— Anthropic model list:claude-opus-4-6,claude-sonnet-4-6,claude-opus-4-5-20251101,claude-opus-4-5.claude-3-7-sonnet-*andclaude-3-5-haiku-*(retired).claude-3-haiku-20240307— it's deprecated and retires 2026-04-20, but still callable today. Comment updated with the retirement date so it's easy to remove in a follow-up.apps/whispering/README.md— Anthropic provider section:claude-opus-4-0,claude-sonnet-4-0,claude-3-7-sonnet-latestto the currentclaude-opus-4-6,claude-sonnet-4-6,claude-haiku-4-5.console.anthropic.com(legacy host) toplatform.claude.com, matching where Anthropic's docs now point users.Note on model-ID conventions
Starting with the 4.6 generation, Anthropic's docs list the alias (
claude-opus-4-6) as both the "Claude API ID" and the "Claude API alias" — there's no dated snapshot variant exposed publicly yet. The existing list includes both dated and aliased forms for earlier models, so I've added just the alias for 4.6 to match what the docs surface. Happy to also add a dated form once Anthropic publishes one.Test plan
bun checkpasses (no TypeScript regressions from thereadonly [...]type update).claude-haiku-4-5end-to-end against a valid API key to confirm no schema/type breakage on the provider call path.