Skip to content

Commit a2874db

Browse files
committed
chore: update models
1 parent 8a36c05 commit a2874db

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/llm/anthropic.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ export function anthropicVertex(env: Record<string, string>): IAnthropicVertex {
294294
'VERTEX_ANTROPIC_PROJECTID',
295295
]
296296
r.supportModels = [
297+
'claude-3-7-sonnet@20250219',
297298
'claude-3-5-sonnet-v2@20241022',
298299
'claude-3-5-haiku@20241022',
299300
'claude-3-5-sonnet@20240620',
@@ -310,6 +311,7 @@ export function anthropic(env: Record<string, string>): IAnthropicVertex {
310311
r.name = 'anthropic'
311312
r.requiredEnv = ['ANTROPIC_API_KEY']
312313
r.supportModels = [
314+
'claude-3-7-sonnet-20250219',
313315
'claude-3-5-sonnet-20241022',
314316
'claude-3-5-haiku-20241022',
315317
'claude-3-5-sonnet-20240620',

src/llm/deepseek.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ export function deepseek(env: Record<string, string>): IChat {
1212
})
1313
r.name = 'deepseek'
1414
r.requiredEnv = ['DEEPSEEK_API_KEY']
15-
r.supportModels = ['deepseek-chat', 'deepseek-coder']
15+
r.supportModels = ['deepseek-reasoner', 'deepseek-chat', 'deepseek-coder']
1616
return r
1717
}

0 commit comments

Comments
 (0)