Skip to content

Commit b24a335

Browse files
committed
Set maxTokens to 64K for Anthropic / 3.7 Sonnet
1 parent 1d1f5c9 commit b24a335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export type AnthropicModelId = keyof typeof anthropicModels
9696
export const anthropicDefaultModelId: AnthropicModelId = "claude-3-7-sonnet-20250219"
9797
export const anthropicModels = {
9898
"claude-3-7-sonnet-20250219": {
99-
maxTokens: 8192,
99+
maxTokens: 64_000,
100100
contextWindow: 200_000,
101101
supportsImages: true,
102102
supportsComputerUse: true,

0 commit comments

Comments
 (0)