Skip to content

[BOT ISSUE] Bedrock: add missing anthropic.claude-opus-5-5 and primary geo variants #1286

Description

@github-actions

Summary

Claude Opus 5.5 launched on Amazon Bedrock on September 22, 2026 (model card confirms "Model launch date: September 22, 2026"). The base model claude-opus-5-5 exists in the catalog (line 8734) with available_providers: ["anthropic"], but the Bedrock-specific entries are missing. Every other recent Claude model has full Bedrock variant coverage (e.g., anthropic.claude-opus-5 at line 9073, global.anthropic.claude-opus-5 at line 10062, us.anthropic.claude-opus-5 at line 10206).

Missing Models

Model ID Type Notes
anthropic.claude-opus-5-5 Base Bedrock entry Primary Bedrock model ID
global.anthropic.claude-opus-5-5 Global cross-region inference Routes worldwide
us.anthropic.claude-opus-5-5 US geo cross-region inference US + Canada regions

Suggested Catalog Entries

Base Bedrock entry

"anthropic.claude-opus-5-5": {
  "format": "anthropic",
  "flavor": "chat",
  "multimodal": true,
  "input_cost_per_mil_tokens": 4,
  "output_cost_per_mil_tokens": 20,
  "input_cache_read_cost_per_mil_tokens": 0.2,
  "input_cache_write_cost_per_mil_tokens": 5,
  "displayName": "Claude Opus 5.5",
  "reasoning": true,
  "reasoning_budget": true,
  "max_input_tokens": 1000000,
  "max_output_tokens": 128000,
  "available_providers": ["bedrock"]
}

Global cross-region

"global.anthropic.claude-opus-5-5": {
  "format": "anthropic",
  "flavor": "chat",
  "multimodal": true,
  "input_cost_per_mil_tokens": 4,
  "output_cost_per_mil_tokens": 20,
  "input_cache_read_cost_per_mil_tokens": 0.2,
  "input_cache_write_cost_per_mil_tokens": 5,
  "displayName": "Global Claude Opus 5.5",
  "reasoning": true,
  "reasoning_budget": true,
  "parent": "anthropic.claude-opus-5-5",
  "max_input_tokens": 1000000,
  "max_output_tokens": 128000,
  "available_providers": ["bedrock"]
}

US geo cross-region

"us.anthropic.claude-opus-5-5": {
  "format": "anthropic",
  "flavor": "chat",
  "multimodal": true,
  "displayName": "US Claude Opus 5.5",
  "reasoning": true,
  "reasoning_budget": true,
  "parent": "anthropic.claude-opus-5-5",
  "max_input_tokens": 1000000,
  "max_output_tokens": 128000,
  "available_providers": ["bedrock"]
}

Pricing Notes

  • Base and Global pricing ($4/$20/$0.20/$5) matches Anthropic's direct API pricing for claude-opus-5-5 (already in catalog at line 8734). The model is Marketplace-billed per the Bedrock model card.
  • US geo pricing omitted — existing us.anthropic.claude-opus-5 carries a 10% premium ($5.50 vs $5.00), but this pattern should be verified from the Bedrock pricing page before applying to Opus 5.5.

Template

Use anthropic.claude-opus-5 (line 9073) and its geo variants (global. at line 10062, us. at line 10206) as structural templates.

Verification Checklist

Check Status Detail
Cross-source ✅ Confirmed on Bedrock models-at-a-glance (lists Claude Opus 5.5 under Anthropic) AND Claude Opus 5.5 model card (Programmatic Access table: model ID anthropic.claude-opus-5-5, geo IDs us., eu., au., jp., global ID global.)
Already in catalog ✅ grep for anthropic.claude-opus-5-5 in model_list.json returns zero matches
ID format ✅ Follows existing convention: anthropic.claude-opus-5 (line 9073), global.anthropic.claude-opus-5 (line 10062)
Not deprecated ✅ Launched September 22, 2026; EOL no sooner than September 22, 2027
Not embedding/CV-only ✅ Chat model (text + image input, text output)
Duplicate check ✅ No open or closed issue covers anthropic.claude-opus-5-5 Bedrock entries

Related Issue

A companion issue covers the remaining geo variants (eu., au., jp.).

Local Files Inspected

  • packages/proxy/schema/model_list.json — confirmed anthropic.claude-opus-5-5 absent; base model claude-opus-5-5 at line 8734; template anthropic.claude-opus-5 at line 9073

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions