feat(anthropic): add claude-fable-5-1 to the direct Anthropic catalog - #1145
feat(anthropic): add claude-fable-5-1 to the direct Anthropic catalog#11451jehuang wants to merge 1 commit into
Conversation
Anthropic released claude-fable-5-1 on 2026-08-28. Without a catalog entry, `jcode -m claude-fable-5-1` on a fresh home (no cached live catalog) failed set_model and silently ran on the default claude-opus-5 instead. Add it to ALL_CLAUDE_MODELS / AVAILABLE_MODELS, the 128K max-output prefix list, and Anthropic API pricing ($10/$50, $0.25 cache read per models.dev).
Greptile SummaryThis change adds Confidence Score: 4/5Not safe to merge as-is because existing direct-Anthropic installations can be unable to select the newly advertised model until their catalog refreshes. The failure was reproduced through the provider’s model-selection path using an isolated persisted catalog snapshot, with a no-cache control confirming that the static entry itself works. Files Needing Attention: Update
What T-Rex did
|
Anthropic released
claude-fable-5-1on 2026-08-28. Without a catalog entry,jcode -m claude-fable-5-1on a fresh home (no cached live catalog) failsset_model, the error is only logged (agent.rsattach path), and the session silently runs on the defaultclaude-opus-5. Found while pinning a jcode build for the Fable 5.1 jcode-bench campaign: the v0.81.4 release ran Opus 5 when asked for Fable 5.1.Changes:
ALL_CLAUDE_MODELS/AVAILABLE_MODELS: addclaude-fable-5-1after Opus 5Scope is deliberately the direct Anthropic route only. The hosted subscription catalog and Conifer profile are not touched since server-side support is unverified.
Verified:
jcode -p anthropic-api -m claude-fable-5-1 run --ndjsonon a fresh HOME now reportsmodel: claude-fable-5-1in start/done events at low and max effort.jcode-provider-coresuite passes;jcode-basehas the same 15 environment-dependent failures as untouched master.