Skip to content
Merged
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
33 changes: 33 additions & 0 deletions packages/models/src/models/anthropic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1138,4 +1138,37 @@ export const anthropicModels = [
},
],
},
{
id: "claude-opus-4-8",
name: "Claude Opus 4.8",
description:
"Claude Opus 4.8 is Anthropic's most capable model with state-of-the-art coding, reasoning, and agentic capabilities.",
family: "anthropic",
releasedAt: new Date("2026-05-28"),
providers: [
{
providerId: "anthropic",
externalId: "claude-opus-4-8",
inputPrice: "5.0e-6",
outputPrice: "25.0e-6",
cachedInputPrice: "0.5e-6",
cacheWriteInputPrice: "6.25e-6",
cacheWriteInputPrice1h: "10.0e-6",
minCacheableTokens: 4096,
requestPrice: "0",
contextSize: 1000000,
maxOutput: 128000,
reasoning: true,
reasoningMode: "adaptive",
reasoningOutput: "omit",
streaming: true,
vision: true,
tools: true,
jsonOutputSchema: true,
supportedParameters: ["temperature", "max_tokens", "top_p", "effort"],
webSearch: true,
webSearchPrice: "0.01",
},
],
},
] as const satisfies ModelDefinition[];
Loading