File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,26 @@ import { OpenAICompatibleProviderBase } from './openAICompatibleProviderBase';
77
88type AnthropicModel = AIModel < typeof provider . id > ;
99const models : AnthropicModel [ ] = [
10+ {
11+ id : 'claude-sonnet-4-5' ,
12+ name : 'Claude 4.5 Sonnet' ,
13+ maxTokens : { input : 204800 , output : 64000 } ,
14+ provider : provider ,
15+ } ,
16+ {
17+ id : 'claude-sonnet-4-5-20250929' ,
18+ name : 'Claude 4.5 Sonnet' ,
19+ maxTokens : { input : 204800 , output : 64000 } ,
20+ provider : provider ,
21+ hidden : true ,
22+ } ,
23+ {
24+ id : 'claude-opus-4-1' ,
25+ name : 'Claude 4.1 Opus' ,
26+ maxTokens : { input : 204800 , output : 32000 } ,
27+ provider : provider ,
28+ hidden : true ,
29+ } ,
1030 {
1131 id : 'claude-opus-4-1-20250805' ,
1232 name : 'Claude 4.1 Opus' ,
You can’t perform that action at this time.
0 commit comments