feat: update to latest Anthropic model lineup (Fable 5, Opus 4.8, Sonnet 5)

Adds claude-fable-5 as a new tier and swaps the default Opus/Sonnet
entries from 4.6 to Opus 4.8 / Sonnet 5, with refreshed pricing and
context-window metadata.
This commit is contained in:
2026-07-16 08:29:45 +02:00
parent c951185cdc
commit 5575d335b7
5 changed files with 33 additions and 21 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ from .base import AIProvider, ProviderResponse, ToolCallResult, UsageStats
logger = logging.getLogger(__name__)
DEFAULT_MODEL = "claude-sonnet-4-6"
DEFAULT_MODEL = "claude-sonnet-5"
class AnthropicProvider(AIProvider):