Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/proxy/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,7 @@ export const AvailableEndpointTypes: { [name: string]: ModelEndpointType[] } = {
"global.anthropic.claude-opus-4-8": ["bedrock"],
"us.anthropic.claude-opus-4-8": ["bedrock"],
"claude-opus-4-8": ["anthropic"],
"claude-opus-5-5": ["anthropic"],
"publishers/anthropic/models/claude-opus-5": ["vertex"],
"anthropic.claude-opus-5": ["bedrock"],
"global.anthropic.claude-opus-5": ["bedrock"],
Expand Down
20 changes: 20 additions & 0 deletions packages/proxy/schema/model_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -8697,6 +8697,26 @@
"openrouter"
]
},
"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,

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Set Opus 5.5's cache-read rate to $0.40/M

For requests reporting cache-read tokens, this records $0.20 per million even though Claude Opus 5.5's published cache-hit price is $0.40 per million. Cost calculations using this catalog entry will therefore undercount the cached-input portion by 50%.

Useful? React with 👍 / 👎.

"input_cache_write_cost_per_mil_tokens": 5,
"input_cache_write_5m_cost_per_mil_tokens": 5,
"input_cache_write_1h_cost_per_mil_tokens": 8,
"displayName": "Claude Opus 5.5",
"reasoning": true,
"reasoning_budget": true,
"deprecation_date": "2027-09-22",
"max_input_tokens": 1000000,
"max_output_tokens": 128000,
"available_providers": [
"anthropic"
]
},
"claude-opus-5": {
"format": "anthropic",
"flavor": "chat",
Expand Down
Loading