We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f974fc commit 27942ecCopy full SHA for 27942ec
extension/src/api/providers/config/anthropic.ts
@@ -7,6 +7,20 @@ export const anthropicConfig: ProviderConfig = {
7
name: PROVIDER_NAMES[PROVIDER_IDS.ANTHROPIC],
8
baseUrl: DEFAULT_BASE_URLS[PROVIDER_IDS.ANTHROPIC],
9
models: [
10
+ {
11
+ id: "claude-sonnet-4-5-preview-20250930",
12
+ maxTokens: 64000,
13
+ contextWindow: 200_000,
14
+ supportsImages: true,
15
+ supportsPromptCache: true,
16
+ inputPrice: 3.5,
17
+ outputPrice: 17.5,
18
+ cacheWritesPrice: 4.0,
19
+ cacheReadsPrice: 0.35,
20
+ name: "Claude Sonnet 4.5(Preview)",
21
+ provider: PROVIDER_IDS.ANTHROPIC,
22
+ isThinkingModel: true,
23
+ },
24
{
25
id: "claude-opus-4-1-20250805",
26
maxTokens: 32000,
0 commit comments