@langchain/anthropic 1.5.0 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/chat_models.cjs +15 -3
- package/dist/chat_models.cjs.map +1 -1
- package/dist/chat_models.d.cts +9 -0
- package/dist/chat_models.d.cts.map +1 -1
- package/dist/chat_models.d.ts +9 -0
- package/dist/chat_models.d.ts.map +1 -1
- package/dist/chat_models.js +15 -3
- package/dist/chat_models.js.map +1 -1
- package/dist/profiles.cjs +28 -164
- package/dist/profiles.cjs.map +1 -1
- package/dist/profiles.js +28 -164
- package/dist/profiles.js.map +1 -1
- package/dist/utils/params.cjs +3 -1
- package/dist/utils/params.cjs.map +1 -1
- package/dist/utils/params.js +3 -1
- package/dist/utils/params.js.map +1 -1
- package/package.json +5 -5
package/dist/profiles.cjs
CHANGED
|
@@ -1,29 +1,12 @@
|
|
|
1
1
|
//#region src/profiles.ts
|
|
2
2
|
const PROFILES = {
|
|
3
|
-
"claude-
|
|
4
|
-
maxInputTokens:
|
|
5
|
-
imageInputs: true,
|
|
6
|
-
audioInputs: false,
|
|
7
|
-
pdfInputs: true,
|
|
8
|
-
videoInputs: false,
|
|
9
|
-
maxOutputTokens: 4096,
|
|
10
|
-
reasoningOutput: false,
|
|
11
|
-
imageOutputs: false,
|
|
12
|
-
audioOutputs: false,
|
|
13
|
-
videoOutputs: false,
|
|
14
|
-
toolCalling: true,
|
|
15
|
-
structuredOutput: false,
|
|
16
|
-
imageUrlInputs: true,
|
|
17
|
-
pdfToolMessage: true,
|
|
18
|
-
imageToolMessage: true
|
|
19
|
-
},
|
|
20
|
-
"claude-haiku-4-5": {
|
|
21
|
-
maxInputTokens: 2e5,
|
|
3
|
+
"claude-sonnet-4-6": {
|
|
4
|
+
maxInputTokens: 1e6,
|
|
22
5
|
imageInputs: true,
|
|
23
6
|
audioInputs: false,
|
|
24
7
|
pdfInputs: true,
|
|
25
8
|
videoInputs: false,
|
|
26
|
-
maxOutputTokens:
|
|
9
|
+
maxOutputTokens: 128e3,
|
|
27
10
|
reasoningOutput: true,
|
|
28
11
|
imageOutputs: false,
|
|
29
12
|
audioOutputs: false,
|
|
@@ -34,7 +17,7 @@ const PROFILES = {
|
|
|
34
17
|
pdfToolMessage: true,
|
|
35
18
|
imageToolMessage: true
|
|
36
19
|
},
|
|
37
|
-
"claude-
|
|
20
|
+
"claude-haiku-4-5": {
|
|
38
21
|
maxInputTokens: 2e5,
|
|
39
22
|
imageInputs: true,
|
|
40
23
|
audioInputs: false,
|
|
@@ -51,81 +34,13 @@ const PROFILES = {
|
|
|
51
34
|
pdfToolMessage: true,
|
|
52
35
|
imageToolMessage: true
|
|
53
36
|
},
|
|
54
|
-
"claude-
|
|
55
|
-
maxInputTokens: 2e5,
|
|
56
|
-
imageInputs: true,
|
|
57
|
-
audioInputs: false,
|
|
58
|
-
pdfInputs: true,
|
|
59
|
-
videoInputs: false,
|
|
60
|
-
maxOutputTokens: 4096,
|
|
61
|
-
reasoningOutput: false,
|
|
62
|
-
imageOutputs: false,
|
|
63
|
-
audioOutputs: false,
|
|
64
|
-
videoOutputs: false,
|
|
65
|
-
toolCalling: true,
|
|
66
|
-
structuredOutput: false,
|
|
67
|
-
imageUrlInputs: true,
|
|
68
|
-
pdfToolMessage: true,
|
|
69
|
-
imageToolMessage: true
|
|
70
|
-
},
|
|
71
|
-
"claude-3-5-haiku-20241022": {
|
|
72
|
-
maxInputTokens: 2e5,
|
|
73
|
-
imageInputs: true,
|
|
74
|
-
audioInputs: false,
|
|
75
|
-
pdfInputs: true,
|
|
76
|
-
videoInputs: false,
|
|
77
|
-
maxOutputTokens: 8192,
|
|
78
|
-
reasoningOutput: false,
|
|
79
|
-
imageOutputs: false,
|
|
80
|
-
audioOutputs: false,
|
|
81
|
-
videoOutputs: false,
|
|
82
|
-
toolCalling: true,
|
|
83
|
-
structuredOutput: false,
|
|
84
|
-
imageUrlInputs: true,
|
|
85
|
-
pdfToolMessage: true,
|
|
86
|
-
imageToolMessage: true
|
|
87
|
-
},
|
|
88
|
-
"claude-3-5-sonnet-20241022": {
|
|
89
|
-
maxInputTokens: 2e5,
|
|
90
|
-
imageInputs: true,
|
|
91
|
-
audioInputs: false,
|
|
92
|
-
pdfInputs: true,
|
|
93
|
-
videoInputs: false,
|
|
94
|
-
maxOutputTokens: 8192,
|
|
95
|
-
reasoningOutput: false,
|
|
96
|
-
imageOutputs: false,
|
|
97
|
-
audioOutputs: false,
|
|
98
|
-
videoOutputs: false,
|
|
99
|
-
toolCalling: true,
|
|
100
|
-
structuredOutput: false,
|
|
101
|
-
imageUrlInputs: true,
|
|
102
|
-
pdfToolMessage: true,
|
|
103
|
-
imageToolMessage: true
|
|
104
|
-
},
|
|
105
|
-
"claude-sonnet-4-6": {
|
|
37
|
+
"claude-opus-4-6": {
|
|
106
38
|
maxInputTokens: 1e6,
|
|
107
39
|
imageInputs: true,
|
|
108
40
|
audioInputs: false,
|
|
109
41
|
pdfInputs: true,
|
|
110
42
|
videoInputs: false,
|
|
111
|
-
maxOutputTokens:
|
|
112
|
-
reasoningOutput: true,
|
|
113
|
-
imageOutputs: false,
|
|
114
|
-
audioOutputs: false,
|
|
115
|
-
videoOutputs: false,
|
|
116
|
-
toolCalling: true,
|
|
117
|
-
structuredOutput: false,
|
|
118
|
-
imageUrlInputs: true,
|
|
119
|
-
pdfToolMessage: true,
|
|
120
|
-
imageToolMessage: true
|
|
121
|
-
},
|
|
122
|
-
"claude-opus-4-0": {
|
|
123
|
-
maxInputTokens: 2e5,
|
|
124
|
-
imageInputs: true,
|
|
125
|
-
audioInputs: false,
|
|
126
|
-
pdfInputs: true,
|
|
127
|
-
videoInputs: false,
|
|
128
|
-
maxOutputTokens: 32e3,
|
|
43
|
+
maxOutputTokens: 128e3,
|
|
129
44
|
reasoningOutput: true,
|
|
130
45
|
imageOutputs: false,
|
|
131
46
|
audioOutputs: false,
|
|
@@ -136,7 +51,7 @@ const PROFILES = {
|
|
|
136
51
|
pdfToolMessage: true,
|
|
137
52
|
imageToolMessage: true
|
|
138
53
|
},
|
|
139
|
-
"claude-
|
|
54
|
+
"claude-fable-5": {
|
|
140
55
|
maxInputTokens: 1e6,
|
|
141
56
|
imageInputs: true,
|
|
142
57
|
audioInputs: false,
|
|
@@ -153,30 +68,13 @@ const PROFILES = {
|
|
|
153
68
|
pdfToolMessage: true,
|
|
154
69
|
imageToolMessage: true
|
|
155
70
|
},
|
|
156
|
-
"claude-
|
|
157
|
-
maxInputTokens:
|
|
158
|
-
imageInputs: true,
|
|
159
|
-
audioInputs: false,
|
|
160
|
-
pdfInputs: true,
|
|
161
|
-
videoInputs: false,
|
|
162
|
-
maxOutputTokens: 4096,
|
|
163
|
-
reasoningOutput: false,
|
|
164
|
-
imageOutputs: false,
|
|
165
|
-
audioOutputs: false,
|
|
166
|
-
videoOutputs: false,
|
|
167
|
-
toolCalling: true,
|
|
168
|
-
structuredOutput: false,
|
|
169
|
-
imageUrlInputs: true,
|
|
170
|
-
pdfToolMessage: true,
|
|
171
|
-
imageToolMessage: true
|
|
172
|
-
},
|
|
173
|
-
"claude-sonnet-4-5-20250929": {
|
|
174
|
-
maxInputTokens: 2e5,
|
|
71
|
+
"claude-opus-4-8": {
|
|
72
|
+
maxInputTokens: 1e6,
|
|
175
73
|
imageInputs: true,
|
|
176
74
|
audioInputs: false,
|
|
177
75
|
pdfInputs: true,
|
|
178
76
|
videoInputs: false,
|
|
179
|
-
maxOutputTokens:
|
|
77
|
+
maxOutputTokens: 128e3,
|
|
180
78
|
reasoningOutput: true,
|
|
181
79
|
imageOutputs: false,
|
|
182
80
|
audioOutputs: false,
|
|
@@ -187,23 +85,6 @@ const PROFILES = {
|
|
|
187
85
|
pdfToolMessage: true,
|
|
188
86
|
imageToolMessage: true
|
|
189
87
|
},
|
|
190
|
-
"claude-3-5-haiku-latest": {
|
|
191
|
-
maxInputTokens: 2e5,
|
|
192
|
-
imageInputs: true,
|
|
193
|
-
audioInputs: false,
|
|
194
|
-
pdfInputs: true,
|
|
195
|
-
videoInputs: false,
|
|
196
|
-
maxOutputTokens: 8192,
|
|
197
|
-
reasoningOutput: false,
|
|
198
|
-
imageOutputs: false,
|
|
199
|
-
audioOutputs: false,
|
|
200
|
-
videoOutputs: false,
|
|
201
|
-
toolCalling: true,
|
|
202
|
-
structuredOutput: false,
|
|
203
|
-
imageUrlInputs: true,
|
|
204
|
-
pdfToolMessage: true,
|
|
205
|
-
imageToolMessage: true
|
|
206
|
-
},
|
|
207
88
|
"claude-opus-4-1": {
|
|
208
89
|
maxInputTokens: 2e5,
|
|
209
90
|
imageInputs: true,
|
|
@@ -221,8 +102,8 @@ const PROFILES = {
|
|
|
221
102
|
pdfToolMessage: true,
|
|
222
103
|
imageToolMessage: true
|
|
223
104
|
},
|
|
224
|
-
"claude-sonnet-4-
|
|
225
|
-
maxInputTokens:
|
|
105
|
+
"claude-sonnet-4-5": {
|
|
106
|
+
maxInputTokens: 1e6,
|
|
226
107
|
imageInputs: true,
|
|
227
108
|
audioInputs: false,
|
|
228
109
|
pdfInputs: true,
|
|
@@ -238,14 +119,14 @@ const PROFILES = {
|
|
|
238
119
|
pdfToolMessage: true,
|
|
239
120
|
imageToolMessage: true
|
|
240
121
|
},
|
|
241
|
-
"claude-
|
|
242
|
-
maxInputTokens:
|
|
122
|
+
"claude-sonnet-4-5-20250929": {
|
|
123
|
+
maxInputTokens: 1e6,
|
|
243
124
|
imageInputs: true,
|
|
244
125
|
audioInputs: false,
|
|
245
126
|
pdfInputs: true,
|
|
246
127
|
videoInputs: false,
|
|
247
|
-
maxOutputTokens:
|
|
248
|
-
reasoningOutput:
|
|
128
|
+
maxOutputTokens: 64e3,
|
|
129
|
+
reasoningOutput: true,
|
|
249
130
|
imageOutputs: false,
|
|
250
131
|
audioOutputs: false,
|
|
251
132
|
videoOutputs: false,
|
|
@@ -255,7 +136,7 @@ const PROFILES = {
|
|
|
255
136
|
pdfToolMessage: true,
|
|
256
137
|
imageToolMessage: true
|
|
257
138
|
},
|
|
258
|
-
"claude-opus-4-5": {
|
|
139
|
+
"claude-opus-4-5-20251101": {
|
|
259
140
|
maxInputTokens: 2e5,
|
|
260
141
|
imageInputs: true,
|
|
261
142
|
audioInputs: false,
|
|
@@ -272,13 +153,13 @@ const PROFILES = {
|
|
|
272
153
|
pdfToolMessage: true,
|
|
273
154
|
imageToolMessage: true
|
|
274
155
|
},
|
|
275
|
-
"claude-
|
|
156
|
+
"claude-haiku-4-5-20251001": {
|
|
276
157
|
maxInputTokens: 2e5,
|
|
277
158
|
imageInputs: true,
|
|
278
159
|
audioInputs: false,
|
|
279
160
|
pdfInputs: true,
|
|
280
161
|
videoInputs: false,
|
|
281
|
-
maxOutputTokens:
|
|
162
|
+
maxOutputTokens: 64e3,
|
|
282
163
|
reasoningOutput: true,
|
|
283
164
|
imageOutputs: false,
|
|
284
165
|
audioOutputs: false,
|
|
@@ -289,13 +170,13 @@ const PROFILES = {
|
|
|
289
170
|
pdfToolMessage: true,
|
|
290
171
|
imageToolMessage: true
|
|
291
172
|
},
|
|
292
|
-
"claude-
|
|
293
|
-
maxInputTokens:
|
|
173
|
+
"claude-opus-4-7": {
|
|
174
|
+
maxInputTokens: 1e6,
|
|
294
175
|
imageInputs: true,
|
|
295
176
|
audioInputs: false,
|
|
296
177
|
pdfInputs: true,
|
|
297
178
|
videoInputs: false,
|
|
298
|
-
maxOutputTokens:
|
|
179
|
+
maxOutputTokens: 128e3,
|
|
299
180
|
reasoningOutput: true,
|
|
300
181
|
imageOutputs: false,
|
|
301
182
|
audioOutputs: false,
|
|
@@ -306,7 +187,7 @@ const PROFILES = {
|
|
|
306
187
|
pdfToolMessage: true,
|
|
307
188
|
imageToolMessage: true
|
|
308
189
|
},
|
|
309
|
-
"claude-
|
|
190
|
+
"claude-opus-4-5": {
|
|
310
191
|
maxInputTokens: 2e5,
|
|
311
192
|
imageInputs: true,
|
|
312
193
|
audioInputs: false,
|
|
@@ -323,7 +204,7 @@ const PROFILES = {
|
|
|
323
204
|
pdfToolMessage: true,
|
|
324
205
|
imageToolMessage: true
|
|
325
206
|
},
|
|
326
|
-
"claude-
|
|
207
|
+
"claude-sonnet-5": {
|
|
327
208
|
maxInputTokens: 1e6,
|
|
328
209
|
imageInputs: true,
|
|
329
210
|
audioInputs: false,
|
|
@@ -340,30 +221,13 @@ const PROFILES = {
|
|
|
340
221
|
pdfToolMessage: true,
|
|
341
222
|
imageToolMessage: true
|
|
342
223
|
},
|
|
343
|
-
"claude-
|
|
344
|
-
maxInputTokens:
|
|
345
|
-
imageInputs: true,
|
|
346
|
-
audioInputs: false,
|
|
347
|
-
pdfInputs: true,
|
|
348
|
-
videoInputs: false,
|
|
349
|
-
maxOutputTokens: 64e3,
|
|
350
|
-
reasoningOutput: true,
|
|
351
|
-
imageOutputs: false,
|
|
352
|
-
audioOutputs: false,
|
|
353
|
-
videoOutputs: false,
|
|
354
|
-
toolCalling: true,
|
|
355
|
-
structuredOutput: false,
|
|
356
|
-
imageUrlInputs: true,
|
|
357
|
-
pdfToolMessage: true,
|
|
358
|
-
imageToolMessage: true
|
|
359
|
-
},
|
|
360
|
-
"claude-sonnet-4-5": {
|
|
361
|
-
maxInputTokens: 2e5,
|
|
224
|
+
"claude-opus-5": {
|
|
225
|
+
maxInputTokens: 1e6,
|
|
362
226
|
imageInputs: true,
|
|
363
227
|
audioInputs: false,
|
|
364
228
|
pdfInputs: true,
|
|
365
229
|
videoInputs: false,
|
|
366
|
-
maxOutputTokens:
|
|
230
|
+
maxOutputTokens: 128e3,
|
|
367
231
|
reasoningOutput: true,
|
|
368
232
|
imageOutputs: false,
|
|
369
233
|
audioOutputs: false,
|
|
@@ -374,7 +238,7 @@ const PROFILES = {
|
|
|
374
238
|
pdfToolMessage: true,
|
|
375
239
|
imageToolMessage: true
|
|
376
240
|
},
|
|
377
|
-
"claude-opus-4-
|
|
241
|
+
"claude-opus-4-1-20250805": {
|
|
378
242
|
maxInputTokens: 2e5,
|
|
379
243
|
imageInputs: true,
|
|
380
244
|
audioInputs: false,
|
package/dist/profiles.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.cjs","names":[],"sources":["../src/profiles.ts"],"sourcesContent":["/**\n * This file was automatically generated by an automated script. Do not edit manually.\n */\nimport type { ModelProfile } from \"@langchain/core/language_models/profile\";\nconst PROFILES: Record<string, ModelProfile> = {\n \"claude-3-sonnet-20240229\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 4096,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-haiku-4-5\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-5-20251101\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-3-opus-20240229\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 4096,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-3-5-haiku-20241022\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-3-5-sonnet-20241022\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-4-6\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-0\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 32000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-7\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-3-haiku-20240307\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 4096,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-4-5-20250929\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-3-5-haiku-latest\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-1\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 32000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-4-0\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-3-5-sonnet-20240620\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-5\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-1-20250805\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 32000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-haiku-4-5-20251001\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-4-20250514\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-6\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-3-7-sonnet-20250219\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-4-5\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-20250514\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 32000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n};\nexport default PROFILES;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"profiles.cjs","names":[],"sources":["../src/profiles.ts"],"sourcesContent":["/**\n * This file was automatically generated by an automated script. Do not edit manually.\n */\nimport type { ModelProfile } from \"@langchain/core/language_models/profile\";\nconst PROFILES: Record<string, ModelProfile> = {\n \"claude-sonnet-4-6\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-haiku-4-5\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-6\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-fable-5\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-8\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-1\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 32000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-4-5\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-4-5-20250929\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-5-20251101\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-haiku-4-5-20251001\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-7\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-5\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 64000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-sonnet-5\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-5\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 128000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n \"claude-opus-4-1-20250805\": {\n maxInputTokens: 200000,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: true,\n videoInputs: false,\n maxOutputTokens: 32000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n imageUrlInputs: true,\n pdfToolMessage: true,\n imageToolMessage: true,\n },\n};\nexport default PROFILES;\n"],"mappings":"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"}
|
package/dist/profiles.js
CHANGED
|
@@ -1,29 +1,12 @@
|
|
|
1
1
|
//#region src/profiles.ts
|
|
2
2
|
const PROFILES = {
|
|
3
|
-
"claude-
|
|
4
|
-
maxInputTokens:
|
|
5
|
-
imageInputs: true,
|
|
6
|
-
audioInputs: false,
|
|
7
|
-
pdfInputs: true,
|
|
8
|
-
videoInputs: false,
|
|
9
|
-
maxOutputTokens: 4096,
|
|
10
|
-
reasoningOutput: false,
|
|
11
|
-
imageOutputs: false,
|
|
12
|
-
audioOutputs: false,
|
|
13
|
-
videoOutputs: false,
|
|
14
|
-
toolCalling: true,
|
|
15
|
-
structuredOutput: false,
|
|
16
|
-
imageUrlInputs: true,
|
|
17
|
-
pdfToolMessage: true,
|
|
18
|
-
imageToolMessage: true
|
|
19
|
-
},
|
|
20
|
-
"claude-haiku-4-5": {
|
|
21
|
-
maxInputTokens: 2e5,
|
|
3
|
+
"claude-sonnet-4-6": {
|
|
4
|
+
maxInputTokens: 1e6,
|
|
22
5
|
imageInputs: true,
|
|
23
6
|
audioInputs: false,
|
|
24
7
|
pdfInputs: true,
|
|
25
8
|
videoInputs: false,
|
|
26
|
-
maxOutputTokens:
|
|
9
|
+
maxOutputTokens: 128e3,
|
|
27
10
|
reasoningOutput: true,
|
|
28
11
|
imageOutputs: false,
|
|
29
12
|
audioOutputs: false,
|
|
@@ -34,7 +17,7 @@ const PROFILES = {
|
|
|
34
17
|
pdfToolMessage: true,
|
|
35
18
|
imageToolMessage: true
|
|
36
19
|
},
|
|
37
|
-
"claude-
|
|
20
|
+
"claude-haiku-4-5": {
|
|
38
21
|
maxInputTokens: 2e5,
|
|
39
22
|
imageInputs: true,
|
|
40
23
|
audioInputs: false,
|
|
@@ -51,81 +34,13 @@ const PROFILES = {
|
|
|
51
34
|
pdfToolMessage: true,
|
|
52
35
|
imageToolMessage: true
|
|
53
36
|
},
|
|
54
|
-
"claude-
|
|
55
|
-
maxInputTokens: 2e5,
|
|
56
|
-
imageInputs: true,
|
|
57
|
-
audioInputs: false,
|
|
58
|
-
pdfInputs: true,
|
|
59
|
-
videoInputs: false,
|
|
60
|
-
maxOutputTokens: 4096,
|
|
61
|
-
reasoningOutput: false,
|
|
62
|
-
imageOutputs: false,
|
|
63
|
-
audioOutputs: false,
|
|
64
|
-
videoOutputs: false,
|
|
65
|
-
toolCalling: true,
|
|
66
|
-
structuredOutput: false,
|
|
67
|
-
imageUrlInputs: true,
|
|
68
|
-
pdfToolMessage: true,
|
|
69
|
-
imageToolMessage: true
|
|
70
|
-
},
|
|
71
|
-
"claude-3-5-haiku-20241022": {
|
|
72
|
-
maxInputTokens: 2e5,
|
|
73
|
-
imageInputs: true,
|
|
74
|
-
audioInputs: false,
|
|
75
|
-
pdfInputs: true,
|
|
76
|
-
videoInputs: false,
|
|
77
|
-
maxOutputTokens: 8192,
|
|
78
|
-
reasoningOutput: false,
|
|
79
|
-
imageOutputs: false,
|
|
80
|
-
audioOutputs: false,
|
|
81
|
-
videoOutputs: false,
|
|
82
|
-
toolCalling: true,
|
|
83
|
-
structuredOutput: false,
|
|
84
|
-
imageUrlInputs: true,
|
|
85
|
-
pdfToolMessage: true,
|
|
86
|
-
imageToolMessage: true
|
|
87
|
-
},
|
|
88
|
-
"claude-3-5-sonnet-20241022": {
|
|
89
|
-
maxInputTokens: 2e5,
|
|
90
|
-
imageInputs: true,
|
|
91
|
-
audioInputs: false,
|
|
92
|
-
pdfInputs: true,
|
|
93
|
-
videoInputs: false,
|
|
94
|
-
maxOutputTokens: 8192,
|
|
95
|
-
reasoningOutput: false,
|
|
96
|
-
imageOutputs: false,
|
|
97
|
-
audioOutputs: false,
|
|
98
|
-
videoOutputs: false,
|
|
99
|
-
toolCalling: true,
|
|
100
|
-
structuredOutput: false,
|
|
101
|
-
imageUrlInputs: true,
|
|
102
|
-
pdfToolMessage: true,
|
|
103
|
-
imageToolMessage: true
|
|
104
|
-
},
|
|
105
|
-
"claude-sonnet-4-6": {
|
|
37
|
+
"claude-opus-4-6": {
|
|
106
38
|
maxInputTokens: 1e6,
|
|
107
39
|
imageInputs: true,
|
|
108
40
|
audioInputs: false,
|
|
109
41
|
pdfInputs: true,
|
|
110
42
|
videoInputs: false,
|
|
111
|
-
maxOutputTokens:
|
|
112
|
-
reasoningOutput: true,
|
|
113
|
-
imageOutputs: false,
|
|
114
|
-
audioOutputs: false,
|
|
115
|
-
videoOutputs: false,
|
|
116
|
-
toolCalling: true,
|
|
117
|
-
structuredOutput: false,
|
|
118
|
-
imageUrlInputs: true,
|
|
119
|
-
pdfToolMessage: true,
|
|
120
|
-
imageToolMessage: true
|
|
121
|
-
},
|
|
122
|
-
"claude-opus-4-0": {
|
|
123
|
-
maxInputTokens: 2e5,
|
|
124
|
-
imageInputs: true,
|
|
125
|
-
audioInputs: false,
|
|
126
|
-
pdfInputs: true,
|
|
127
|
-
videoInputs: false,
|
|
128
|
-
maxOutputTokens: 32e3,
|
|
43
|
+
maxOutputTokens: 128e3,
|
|
129
44
|
reasoningOutput: true,
|
|
130
45
|
imageOutputs: false,
|
|
131
46
|
audioOutputs: false,
|
|
@@ -136,7 +51,7 @@ const PROFILES = {
|
|
|
136
51
|
pdfToolMessage: true,
|
|
137
52
|
imageToolMessage: true
|
|
138
53
|
},
|
|
139
|
-
"claude-
|
|
54
|
+
"claude-fable-5": {
|
|
140
55
|
maxInputTokens: 1e6,
|
|
141
56
|
imageInputs: true,
|
|
142
57
|
audioInputs: false,
|
|
@@ -153,30 +68,13 @@ const PROFILES = {
|
|
|
153
68
|
pdfToolMessage: true,
|
|
154
69
|
imageToolMessage: true
|
|
155
70
|
},
|
|
156
|
-
"claude-
|
|
157
|
-
maxInputTokens:
|
|
158
|
-
imageInputs: true,
|
|
159
|
-
audioInputs: false,
|
|
160
|
-
pdfInputs: true,
|
|
161
|
-
videoInputs: false,
|
|
162
|
-
maxOutputTokens: 4096,
|
|
163
|
-
reasoningOutput: false,
|
|
164
|
-
imageOutputs: false,
|
|
165
|
-
audioOutputs: false,
|
|
166
|
-
videoOutputs: false,
|
|
167
|
-
toolCalling: true,
|
|
168
|
-
structuredOutput: false,
|
|
169
|
-
imageUrlInputs: true,
|
|
170
|
-
pdfToolMessage: true,
|
|
171
|
-
imageToolMessage: true
|
|
172
|
-
},
|
|
173
|
-
"claude-sonnet-4-5-20250929": {
|
|
174
|
-
maxInputTokens: 2e5,
|
|
71
|
+
"claude-opus-4-8": {
|
|
72
|
+
maxInputTokens: 1e6,
|
|
175
73
|
imageInputs: true,
|
|
176
74
|
audioInputs: false,
|
|
177
75
|
pdfInputs: true,
|
|
178
76
|
videoInputs: false,
|
|
179
|
-
maxOutputTokens:
|
|
77
|
+
maxOutputTokens: 128e3,
|
|
180
78
|
reasoningOutput: true,
|
|
181
79
|
imageOutputs: false,
|
|
182
80
|
audioOutputs: false,
|
|
@@ -187,23 +85,6 @@ const PROFILES = {
|
|
|
187
85
|
pdfToolMessage: true,
|
|
188
86
|
imageToolMessage: true
|
|
189
87
|
},
|
|
190
|
-
"claude-3-5-haiku-latest": {
|
|
191
|
-
maxInputTokens: 2e5,
|
|
192
|
-
imageInputs: true,
|
|
193
|
-
audioInputs: false,
|
|
194
|
-
pdfInputs: true,
|
|
195
|
-
videoInputs: false,
|
|
196
|
-
maxOutputTokens: 8192,
|
|
197
|
-
reasoningOutput: false,
|
|
198
|
-
imageOutputs: false,
|
|
199
|
-
audioOutputs: false,
|
|
200
|
-
videoOutputs: false,
|
|
201
|
-
toolCalling: true,
|
|
202
|
-
structuredOutput: false,
|
|
203
|
-
imageUrlInputs: true,
|
|
204
|
-
pdfToolMessage: true,
|
|
205
|
-
imageToolMessage: true
|
|
206
|
-
},
|
|
207
88
|
"claude-opus-4-1": {
|
|
208
89
|
maxInputTokens: 2e5,
|
|
209
90
|
imageInputs: true,
|
|
@@ -221,8 +102,8 @@ const PROFILES = {
|
|
|
221
102
|
pdfToolMessage: true,
|
|
222
103
|
imageToolMessage: true
|
|
223
104
|
},
|
|
224
|
-
"claude-sonnet-4-
|
|
225
|
-
maxInputTokens:
|
|
105
|
+
"claude-sonnet-4-5": {
|
|
106
|
+
maxInputTokens: 1e6,
|
|
226
107
|
imageInputs: true,
|
|
227
108
|
audioInputs: false,
|
|
228
109
|
pdfInputs: true,
|
|
@@ -238,14 +119,14 @@ const PROFILES = {
|
|
|
238
119
|
pdfToolMessage: true,
|
|
239
120
|
imageToolMessage: true
|
|
240
121
|
},
|
|
241
|
-
"claude-
|
|
242
|
-
maxInputTokens:
|
|
122
|
+
"claude-sonnet-4-5-20250929": {
|
|
123
|
+
maxInputTokens: 1e6,
|
|
243
124
|
imageInputs: true,
|
|
244
125
|
audioInputs: false,
|
|
245
126
|
pdfInputs: true,
|
|
246
127
|
videoInputs: false,
|
|
247
|
-
maxOutputTokens:
|
|
248
|
-
reasoningOutput:
|
|
128
|
+
maxOutputTokens: 64e3,
|
|
129
|
+
reasoningOutput: true,
|
|
249
130
|
imageOutputs: false,
|
|
250
131
|
audioOutputs: false,
|
|
251
132
|
videoOutputs: false,
|
|
@@ -255,7 +136,7 @@ const PROFILES = {
|
|
|
255
136
|
pdfToolMessage: true,
|
|
256
137
|
imageToolMessage: true
|
|
257
138
|
},
|
|
258
|
-
"claude-opus-4-5": {
|
|
139
|
+
"claude-opus-4-5-20251101": {
|
|
259
140
|
maxInputTokens: 2e5,
|
|
260
141
|
imageInputs: true,
|
|
261
142
|
audioInputs: false,
|
|
@@ -272,13 +153,13 @@ const PROFILES = {
|
|
|
272
153
|
pdfToolMessage: true,
|
|
273
154
|
imageToolMessage: true
|
|
274
155
|
},
|
|
275
|
-
"claude-
|
|
156
|
+
"claude-haiku-4-5-20251001": {
|
|
276
157
|
maxInputTokens: 2e5,
|
|
277
158
|
imageInputs: true,
|
|
278
159
|
audioInputs: false,
|
|
279
160
|
pdfInputs: true,
|
|
280
161
|
videoInputs: false,
|
|
281
|
-
maxOutputTokens:
|
|
162
|
+
maxOutputTokens: 64e3,
|
|
282
163
|
reasoningOutput: true,
|
|
283
164
|
imageOutputs: false,
|
|
284
165
|
audioOutputs: false,
|
|
@@ -289,13 +170,13 @@ const PROFILES = {
|
|
|
289
170
|
pdfToolMessage: true,
|
|
290
171
|
imageToolMessage: true
|
|
291
172
|
},
|
|
292
|
-
"claude-
|
|
293
|
-
maxInputTokens:
|
|
173
|
+
"claude-opus-4-7": {
|
|
174
|
+
maxInputTokens: 1e6,
|
|
294
175
|
imageInputs: true,
|
|
295
176
|
audioInputs: false,
|
|
296
177
|
pdfInputs: true,
|
|
297
178
|
videoInputs: false,
|
|
298
|
-
maxOutputTokens:
|
|
179
|
+
maxOutputTokens: 128e3,
|
|
299
180
|
reasoningOutput: true,
|
|
300
181
|
imageOutputs: false,
|
|
301
182
|
audioOutputs: false,
|
|
@@ -306,7 +187,7 @@ const PROFILES = {
|
|
|
306
187
|
pdfToolMessage: true,
|
|
307
188
|
imageToolMessage: true
|
|
308
189
|
},
|
|
309
|
-
"claude-
|
|
190
|
+
"claude-opus-4-5": {
|
|
310
191
|
maxInputTokens: 2e5,
|
|
311
192
|
imageInputs: true,
|
|
312
193
|
audioInputs: false,
|
|
@@ -323,7 +204,7 @@ const PROFILES = {
|
|
|
323
204
|
pdfToolMessage: true,
|
|
324
205
|
imageToolMessage: true
|
|
325
206
|
},
|
|
326
|
-
"claude-
|
|
207
|
+
"claude-sonnet-5": {
|
|
327
208
|
maxInputTokens: 1e6,
|
|
328
209
|
imageInputs: true,
|
|
329
210
|
audioInputs: false,
|
|
@@ -340,30 +221,13 @@ const PROFILES = {
|
|
|
340
221
|
pdfToolMessage: true,
|
|
341
222
|
imageToolMessage: true
|
|
342
223
|
},
|
|
343
|
-
"claude-
|
|
344
|
-
maxInputTokens:
|
|
345
|
-
imageInputs: true,
|
|
346
|
-
audioInputs: false,
|
|
347
|
-
pdfInputs: true,
|
|
348
|
-
videoInputs: false,
|
|
349
|
-
maxOutputTokens: 64e3,
|
|
350
|
-
reasoningOutput: true,
|
|
351
|
-
imageOutputs: false,
|
|
352
|
-
audioOutputs: false,
|
|
353
|
-
videoOutputs: false,
|
|
354
|
-
toolCalling: true,
|
|
355
|
-
structuredOutput: false,
|
|
356
|
-
imageUrlInputs: true,
|
|
357
|
-
pdfToolMessage: true,
|
|
358
|
-
imageToolMessage: true
|
|
359
|
-
},
|
|
360
|
-
"claude-sonnet-4-5": {
|
|
361
|
-
maxInputTokens: 2e5,
|
|
224
|
+
"claude-opus-5": {
|
|
225
|
+
maxInputTokens: 1e6,
|
|
362
226
|
imageInputs: true,
|
|
363
227
|
audioInputs: false,
|
|
364
228
|
pdfInputs: true,
|
|
365
229
|
videoInputs: false,
|
|
366
|
-
maxOutputTokens:
|
|
230
|
+
maxOutputTokens: 128e3,
|
|
367
231
|
reasoningOutput: true,
|
|
368
232
|
imageOutputs: false,
|
|
369
233
|
audioOutputs: false,
|
|
@@ -374,7 +238,7 @@ const PROFILES = {
|
|
|
374
238
|
pdfToolMessage: true,
|
|
375
239
|
imageToolMessage: true
|
|
376
240
|
},
|
|
377
|
-
"claude-opus-4-
|
|
241
|
+
"claude-opus-4-1-20250805": {
|
|
378
242
|
maxInputTokens: 2e5,
|
|
379
243
|
imageInputs: true,
|
|
380
244
|
audioInputs: false,
|