Replace retired manager LLM default with claude-opus-4-8 - #35
Open
aleksUIX wants to merge 1 commit into
Open
Conversation
Anthropic retired claude-opus-4-20250514 on June 15, 2026, so the shipped MANAGER_LLM_MODEL default now fails with model_not_found on any fresh install that uses an Anthropic key. Swap in claude-opus-4-8, the designated replacement, across settings.py, .env.example, and the configuration guide. The commented Bedrock example moves to us.anthropic.claude-opus-4-8, the current inference profile id (the -v1:0 suffix was dropped for undated model ids).
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.
Problem
The shipped
MANAGER_LLM_MODELdefault isanthropic/claude-opus-4-20250514. Anthropic retired that model on June 15, 2026 (deprecation schedule), so any fresh install with an Anthropic key now fails at runtime withmodel_not_foundthe first time a manager agent is invoked.DEFAULT_LLM_MODELis unaffected (Sonnet 4.5 is still active).Change
Swap the default to
anthropic/claude-opus-4-8, Anthropic's designated replacement for Opus 4. Updated everywhere the old id was pinned:settings.py,.env.example, anddocs/guides/configuration.md.The commented Bedrock example becomes
bedrock/us.anthropic.claude-opus-4-8: verified against LiteLLM's model registry, which carriesus.anthropic.claude-opus-4-8as the current US inference profile id (the-v1:0suffix was dropped for undated model ids).Mirrors the same fix submitted to buyer-agent, keeping the two repos' LLM defaults in sync.
Verification
Settings(anthropic_api_key=...)instantiates with the new default; no occurrence of the retired id remains in the repo.pyproject.tomlpins the privateiab-agentic-primitivesrepo (same reason CI on main has been failing since ~July 20); unrelated to this change, filing separately.