@adaline/anthropic 1.13.5 → 1.13.7
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/dist/index.d.mts +275 -1
- package/dist/index.d.ts +275 -1
- package/dist/index.js +135 -131
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -831,6 +831,14 @@ declare const Claude4Opus20250514Schema: {
|
|
|
831
831
|
description: string;
|
|
832
832
|
default: string;
|
|
833
833
|
choices: string[];
|
|
834
|
+
} | {
|
|
835
|
+
type: "string";
|
|
836
|
+
param: string;
|
|
837
|
+
title: string;
|
|
838
|
+
description: string;
|
|
839
|
+
default?: string | undefined;
|
|
840
|
+
minLength?: number | undefined;
|
|
841
|
+
maxLength?: number | undefined;
|
|
834
842
|
}>;
|
|
835
843
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
836
844
|
};
|
|
@@ -937,6 +945,14 @@ declare const Claude4Sonnet20250514Schema: {
|
|
|
937
945
|
description: string;
|
|
938
946
|
default: string;
|
|
939
947
|
choices: string[];
|
|
948
|
+
} | {
|
|
949
|
+
type: "string";
|
|
950
|
+
param: string;
|
|
951
|
+
title: string;
|
|
952
|
+
description: string;
|
|
953
|
+
default?: string | undefined;
|
|
954
|
+
minLength?: number | undefined;
|
|
955
|
+
maxLength?: number | undefined;
|
|
940
956
|
}>;
|
|
941
957
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
942
958
|
};
|
|
@@ -1043,6 +1059,14 @@ declare const ClaudeOpus4_520251101Schema: {
|
|
|
1043
1059
|
description: string;
|
|
1044
1060
|
default: string;
|
|
1045
1061
|
choices: string[];
|
|
1062
|
+
} | {
|
|
1063
|
+
type: "string";
|
|
1064
|
+
param: string;
|
|
1065
|
+
title: string;
|
|
1066
|
+
description: string;
|
|
1067
|
+
default?: string | undefined;
|
|
1068
|
+
minLength?: number | undefined;
|
|
1069
|
+
maxLength?: number | undefined;
|
|
1046
1070
|
}>;
|
|
1047
1071
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1048
1072
|
};
|
|
@@ -1149,6 +1173,14 @@ declare const ClaudeOpus4_6Schema: {
|
|
|
1149
1173
|
description: string;
|
|
1150
1174
|
default: string;
|
|
1151
1175
|
choices: string[];
|
|
1176
|
+
} | {
|
|
1177
|
+
type: "string";
|
|
1178
|
+
param: string;
|
|
1179
|
+
title: string;
|
|
1180
|
+
description: string;
|
|
1181
|
+
default?: string | undefined;
|
|
1182
|
+
minLength?: number | undefined;
|
|
1183
|
+
maxLength?: number | undefined;
|
|
1152
1184
|
}>;
|
|
1153
1185
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1154
1186
|
};
|
|
@@ -1189,6 +1221,120 @@ declare class ClaudeOpus4_6 extends BaseChatModel {
|
|
|
1189
1221
|
constructor(options: ClaudeOpus4_6OptionsType);
|
|
1190
1222
|
}
|
|
1191
1223
|
|
|
1224
|
+
declare const ClaudeOpus4_7Literal = "claude-opus-4-7";
|
|
1225
|
+
declare const ClaudeOpus4_7Schema: {
|
|
1226
|
+
description: string;
|
|
1227
|
+
name: string;
|
|
1228
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
1229
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response" | "reasoning", ...("text" | "image" | "tool-call" | "tool-response" | "reasoning")[]];
|
|
1230
|
+
maxInputTokens: number;
|
|
1231
|
+
maxOutputTokens: number;
|
|
1232
|
+
config: {
|
|
1233
|
+
def: Record<string, {
|
|
1234
|
+
type: "multi-string";
|
|
1235
|
+
param: string;
|
|
1236
|
+
title: string;
|
|
1237
|
+
description: string;
|
|
1238
|
+
max: number;
|
|
1239
|
+
} | {
|
|
1240
|
+
type: "object-schema";
|
|
1241
|
+
param: string;
|
|
1242
|
+
title: string;
|
|
1243
|
+
description: string;
|
|
1244
|
+
objectSchema?: any;
|
|
1245
|
+
} | {
|
|
1246
|
+
type: "paired-select";
|
|
1247
|
+
param: string;
|
|
1248
|
+
title: string;
|
|
1249
|
+
description: string;
|
|
1250
|
+
fields: [{
|
|
1251
|
+
label: string;
|
|
1252
|
+
key: string;
|
|
1253
|
+
choices: {
|
|
1254
|
+
value: string;
|
|
1255
|
+
label: string;
|
|
1256
|
+
}[];
|
|
1257
|
+
description?: string | undefined;
|
|
1258
|
+
}, {
|
|
1259
|
+
label: string;
|
|
1260
|
+
key: string;
|
|
1261
|
+
choices: {
|
|
1262
|
+
value: string;
|
|
1263
|
+
label: string;
|
|
1264
|
+
}[];
|
|
1265
|
+
description?: string | undefined;
|
|
1266
|
+
}];
|
|
1267
|
+
uniqueByField?: string | undefined;
|
|
1268
|
+
} | {
|
|
1269
|
+
type: "range";
|
|
1270
|
+
param: string;
|
|
1271
|
+
title: string;
|
|
1272
|
+
description: string;
|
|
1273
|
+
max: number;
|
|
1274
|
+
default: number;
|
|
1275
|
+
min: number;
|
|
1276
|
+
step: number;
|
|
1277
|
+
} | {
|
|
1278
|
+
type: "select-boolean";
|
|
1279
|
+
param: string;
|
|
1280
|
+
title: string;
|
|
1281
|
+
description: string;
|
|
1282
|
+
default: boolean | null;
|
|
1283
|
+
} | {
|
|
1284
|
+
type: "select-string";
|
|
1285
|
+
param: string;
|
|
1286
|
+
title: string;
|
|
1287
|
+
description: string;
|
|
1288
|
+
default: string;
|
|
1289
|
+
choices: string[];
|
|
1290
|
+
} | {
|
|
1291
|
+
type: "string";
|
|
1292
|
+
param: string;
|
|
1293
|
+
title: string;
|
|
1294
|
+
description: string;
|
|
1295
|
+
default?: string | undefined;
|
|
1296
|
+
minLength?: number | undefined;
|
|
1297
|
+
maxLength?: number | undefined;
|
|
1298
|
+
}>;
|
|
1299
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1300
|
+
};
|
|
1301
|
+
price: {
|
|
1302
|
+
modelName: string;
|
|
1303
|
+
currency: string;
|
|
1304
|
+
tokenRanges: {
|
|
1305
|
+
minTokens: number;
|
|
1306
|
+
prices: {
|
|
1307
|
+
base: {
|
|
1308
|
+
inputPricePerMillion: number;
|
|
1309
|
+
outputPricePerMillion: number;
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
maxTokens?: number | null | undefined;
|
|
1313
|
+
}[];
|
|
1314
|
+
};
|
|
1315
|
+
maxReasoningTokens?: number | undefined;
|
|
1316
|
+
};
|
|
1317
|
+
declare const ClaudeOpus4_7Options: z.ZodObject<{
|
|
1318
|
+
modelName: z.ZodString;
|
|
1319
|
+
apiKey: z.ZodString;
|
|
1320
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
1321
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
1322
|
+
}, "strip", z.ZodTypeAny, {
|
|
1323
|
+
modelName: string;
|
|
1324
|
+
apiKey: string;
|
|
1325
|
+
completeChatUrl?: string | undefined;
|
|
1326
|
+
streamChatUrl?: string | undefined;
|
|
1327
|
+
}, {
|
|
1328
|
+
modelName: string;
|
|
1329
|
+
apiKey: string;
|
|
1330
|
+
completeChatUrl?: string | undefined;
|
|
1331
|
+
streamChatUrl?: string | undefined;
|
|
1332
|
+
}>;
|
|
1333
|
+
type ClaudeOpus4_7OptionsType = z.infer<typeof ClaudeOpus4_7Options>;
|
|
1334
|
+
declare class ClaudeOpus4_7 extends BaseChatModel {
|
|
1335
|
+
constructor(options: ClaudeOpus4_7OptionsType);
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1192
1338
|
declare const ClaudeSonnet4_520250929Literal = "claude-sonnet-4-5-20250929";
|
|
1193
1339
|
declare const ClaudeSonnet4_520250929Schema: {
|
|
1194
1340
|
description: string;
|
|
@@ -1255,6 +1401,14 @@ declare const ClaudeSonnet4_520250929Schema: {
|
|
|
1255
1401
|
description: string;
|
|
1256
1402
|
default: string;
|
|
1257
1403
|
choices: string[];
|
|
1404
|
+
} | {
|
|
1405
|
+
type: "string";
|
|
1406
|
+
param: string;
|
|
1407
|
+
title: string;
|
|
1408
|
+
description: string;
|
|
1409
|
+
default?: string | undefined;
|
|
1410
|
+
minLength?: number | undefined;
|
|
1411
|
+
maxLength?: number | undefined;
|
|
1258
1412
|
}>;
|
|
1259
1413
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1260
1414
|
};
|
|
@@ -1361,6 +1515,14 @@ declare const ClaudeSonnet4_6Schema: {
|
|
|
1361
1515
|
description: string;
|
|
1362
1516
|
default: string;
|
|
1363
1517
|
choices: string[];
|
|
1518
|
+
} | {
|
|
1519
|
+
type: "string";
|
|
1520
|
+
param: string;
|
|
1521
|
+
title: string;
|
|
1522
|
+
description: string;
|
|
1523
|
+
default?: string | undefined;
|
|
1524
|
+
minLength?: number | undefined;
|
|
1525
|
+
maxLength?: number | undefined;
|
|
1364
1526
|
}>;
|
|
1365
1527
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1366
1528
|
};
|
|
@@ -1467,6 +1629,14 @@ declare const ClaudeHaiku4_520251001Schema: {
|
|
|
1467
1629
|
description: string;
|
|
1468
1630
|
default: string;
|
|
1469
1631
|
choices: string[];
|
|
1632
|
+
} | {
|
|
1633
|
+
type: "string";
|
|
1634
|
+
param: string;
|
|
1635
|
+
title: string;
|
|
1636
|
+
description: string;
|
|
1637
|
+
default?: string | undefined;
|
|
1638
|
+
minLength?: number | undefined;
|
|
1639
|
+
maxLength?: number | undefined;
|
|
1470
1640
|
}>;
|
|
1471
1641
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1472
1642
|
};
|
|
@@ -1573,6 +1743,14 @@ declare const Claude3_5Sonnet20240620Schema: {
|
|
|
1573
1743
|
description: string;
|
|
1574
1744
|
default: string;
|
|
1575
1745
|
choices: string[];
|
|
1746
|
+
} | {
|
|
1747
|
+
type: "string";
|
|
1748
|
+
param: string;
|
|
1749
|
+
title: string;
|
|
1750
|
+
description: string;
|
|
1751
|
+
default?: string | undefined;
|
|
1752
|
+
minLength?: number | undefined;
|
|
1753
|
+
maxLength?: number | undefined;
|
|
1576
1754
|
}>;
|
|
1577
1755
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1578
1756
|
};
|
|
@@ -1679,6 +1857,14 @@ declare const Claude3_5Sonnet20241022Schema: {
|
|
|
1679
1857
|
description: string;
|
|
1680
1858
|
default: string;
|
|
1681
1859
|
choices: string[];
|
|
1860
|
+
} | {
|
|
1861
|
+
type: "string";
|
|
1862
|
+
param: string;
|
|
1863
|
+
title: string;
|
|
1864
|
+
description: string;
|
|
1865
|
+
default?: string | undefined;
|
|
1866
|
+
minLength?: number | undefined;
|
|
1867
|
+
maxLength?: number | undefined;
|
|
1682
1868
|
}>;
|
|
1683
1869
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1684
1870
|
};
|
|
@@ -1785,6 +1971,14 @@ declare const Claude3_7Sonnet20250219Schema: {
|
|
|
1785
1971
|
description: string;
|
|
1786
1972
|
default: string;
|
|
1787
1973
|
choices: string[];
|
|
1974
|
+
} | {
|
|
1975
|
+
type: "string";
|
|
1976
|
+
param: string;
|
|
1977
|
+
title: string;
|
|
1978
|
+
description: string;
|
|
1979
|
+
default?: string | undefined;
|
|
1980
|
+
minLength?: number | undefined;
|
|
1981
|
+
maxLength?: number | undefined;
|
|
1788
1982
|
}>;
|
|
1789
1983
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1790
1984
|
};
|
|
@@ -1892,6 +2086,14 @@ declare const Claude3Haiku20240307Schema: {
|
|
|
1892
2086
|
description: string;
|
|
1893
2087
|
default: string;
|
|
1894
2088
|
choices: string[];
|
|
2089
|
+
} | {
|
|
2090
|
+
type: "string";
|
|
2091
|
+
param: string;
|
|
2092
|
+
title: string;
|
|
2093
|
+
description: string;
|
|
2094
|
+
default?: string | undefined;
|
|
2095
|
+
minLength?: number | undefined;
|
|
2096
|
+
maxLength?: number | undefined;
|
|
1895
2097
|
}>;
|
|
1896
2098
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1897
2099
|
};
|
|
@@ -1998,6 +2200,14 @@ declare const Claude3_5Haiku20241022Schema: {
|
|
|
1998
2200
|
description: string;
|
|
1999
2201
|
default: string;
|
|
2000
2202
|
choices: string[];
|
|
2203
|
+
} | {
|
|
2204
|
+
type: "string";
|
|
2205
|
+
param: string;
|
|
2206
|
+
title: string;
|
|
2207
|
+
description: string;
|
|
2208
|
+
default?: string | undefined;
|
|
2209
|
+
minLength?: number | undefined;
|
|
2210
|
+
maxLength?: number | undefined;
|
|
2001
2211
|
}>;
|
|
2002
2212
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
2003
2213
|
};
|
|
@@ -2104,6 +2314,14 @@ declare const Claude3Opus20240229Schema: {
|
|
|
2104
2314
|
description: string;
|
|
2105
2315
|
default: string;
|
|
2106
2316
|
choices: string[];
|
|
2317
|
+
} | {
|
|
2318
|
+
type: "string";
|
|
2319
|
+
param: string;
|
|
2320
|
+
title: string;
|
|
2321
|
+
description: string;
|
|
2322
|
+
default?: string | undefined;
|
|
2323
|
+
minLength?: number | undefined;
|
|
2324
|
+
maxLength?: number | undefined;
|
|
2107
2325
|
}>;
|
|
2108
2326
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
2109
2327
|
};
|
|
@@ -2210,6 +2428,14 @@ declare const Claude3Sonnet20240229Schema: {
|
|
|
2210
2428
|
description: string;
|
|
2211
2429
|
default: string;
|
|
2212
2430
|
choices: string[];
|
|
2431
|
+
} | {
|
|
2432
|
+
type: "string";
|
|
2433
|
+
param: string;
|
|
2434
|
+
title: string;
|
|
2435
|
+
description: string;
|
|
2436
|
+
default?: string | undefined;
|
|
2437
|
+
minLength?: number | undefined;
|
|
2438
|
+
maxLength?: number | undefined;
|
|
2213
2439
|
}>;
|
|
2214
2440
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
2215
2441
|
};
|
|
@@ -4511,6 +4737,14 @@ declare const VoyageCode2Schema: {
|
|
|
4511
4737
|
description: string;
|
|
4512
4738
|
default: string;
|
|
4513
4739
|
choices: string[];
|
|
4740
|
+
} | {
|
|
4741
|
+
type: "string";
|
|
4742
|
+
param: string;
|
|
4743
|
+
title: string;
|
|
4744
|
+
description: string;
|
|
4745
|
+
default?: string | undefined;
|
|
4746
|
+
minLength?: number | undefined;
|
|
4747
|
+
maxLength?: number | undefined;
|
|
4514
4748
|
}>;
|
|
4515
4749
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4516
4750
|
};
|
|
@@ -4598,6 +4832,14 @@ declare const VoyageLaw2Schema: {
|
|
|
4598
4832
|
description: string;
|
|
4599
4833
|
default: string;
|
|
4600
4834
|
choices: string[];
|
|
4835
|
+
} | {
|
|
4836
|
+
type: "string";
|
|
4837
|
+
param: string;
|
|
4838
|
+
title: string;
|
|
4839
|
+
description: string;
|
|
4840
|
+
default?: string | undefined;
|
|
4841
|
+
minLength?: number | undefined;
|
|
4842
|
+
maxLength?: number | undefined;
|
|
4601
4843
|
}>;
|
|
4602
4844
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4603
4845
|
};
|
|
@@ -4685,6 +4927,14 @@ declare const VoyageMultilingual2Schema: {
|
|
|
4685
4927
|
description: string;
|
|
4686
4928
|
default: string;
|
|
4687
4929
|
choices: string[];
|
|
4930
|
+
} | {
|
|
4931
|
+
type: "string";
|
|
4932
|
+
param: string;
|
|
4933
|
+
title: string;
|
|
4934
|
+
description: string;
|
|
4935
|
+
default?: string | undefined;
|
|
4936
|
+
minLength?: number | undefined;
|
|
4937
|
+
maxLength?: number | undefined;
|
|
4688
4938
|
}>;
|
|
4689
4939
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4690
4940
|
};
|
|
@@ -4772,6 +5022,14 @@ declare const VoyageFinance2Schema: {
|
|
|
4772
5022
|
description: string;
|
|
4773
5023
|
default: string;
|
|
4774
5024
|
choices: string[];
|
|
5025
|
+
} | {
|
|
5026
|
+
type: "string";
|
|
5027
|
+
param: string;
|
|
5028
|
+
title: string;
|
|
5029
|
+
description: string;
|
|
5030
|
+
default?: string | undefined;
|
|
5031
|
+
minLength?: number | undefined;
|
|
5032
|
+
maxLength?: number | undefined;
|
|
4775
5033
|
}>;
|
|
4776
5034
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4777
5035
|
};
|
|
@@ -4859,6 +5117,14 @@ declare const Voyage3LiteSchema: {
|
|
|
4859
5117
|
description: string;
|
|
4860
5118
|
default: string;
|
|
4861
5119
|
choices: string[];
|
|
5120
|
+
} | {
|
|
5121
|
+
type: "string";
|
|
5122
|
+
param: string;
|
|
5123
|
+
title: string;
|
|
5124
|
+
description: string;
|
|
5125
|
+
default?: string | undefined;
|
|
5126
|
+
minLength?: number | undefined;
|
|
5127
|
+
maxLength?: number | undefined;
|
|
4862
5128
|
}>;
|
|
4863
5129
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4864
5130
|
};
|
|
@@ -4946,6 +5212,14 @@ declare const Voyage3Schema: {
|
|
|
4946
5212
|
description: string;
|
|
4947
5213
|
default: string;
|
|
4948
5214
|
choices: string[];
|
|
5215
|
+
} | {
|
|
5216
|
+
type: "string";
|
|
5217
|
+
param: string;
|
|
5218
|
+
title: string;
|
|
5219
|
+
description: string;
|
|
5220
|
+
default?: string | undefined;
|
|
5221
|
+
minLength?: number | undefined;
|
|
5222
|
+
maxLength?: number | undefined;
|
|
4949
5223
|
}>;
|
|
4950
5224
|
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4951
5225
|
};
|
|
@@ -4984,4 +5258,4 @@ declare class Anthropic<C extends BaseChatModelOptionsType, E extends BaseEmbedd
|
|
|
4984
5258
|
embeddingModel(options: E): EmbeddingModelV1;
|
|
4985
5259
|
}
|
|
4986
5260
|
|
|
4987
|
-
export { Anthropic, AnthropicChatModelConfigs, AnthropicChatModelModalities, AnthropicChatModelModalitiesEnum, AnthropicChatModelRoles, AnthropicChatModelRolesMap, AnthropicCompleteChatMcpToolResultResponse, AnthropicCompleteChatMcpToolUseResponse, AnthropicCompleteChatResponse, type AnthropicCompleteChatResponseType, AnthropicEmbeddingModelConfigs, AnthropicEmbeddingModelModalities, AnthropicEmbeddingModelModalitiesEnum, AnthropicEmbeddingRequest, AnthropicEmbeddingRequestInput, type AnthropicEmbeddingRequestInputType, type AnthropicEmbeddingRequestType, AnthropicGetEmbeddingsResponse, AnthropicRequest, AnthropicRequestAssistantMessage, type AnthropicRequestAssistantMessageType, AnthropicRequestImageContent, type AnthropicRequestImageContentType, AnthropicRequestMcpServer, AnthropicRequestMcpServerToolConfiguration, type AnthropicRequestMcpServerToolConfigurationType, type AnthropicRequestMcpServerType, AnthropicRequestMcpToolResultContent, type AnthropicRequestMcpToolResultContentType, AnthropicRequestMcpToolUseContent, type AnthropicRequestMcpToolUseContentType, AnthropicRequestMessage, type AnthropicRequestMessageType, AnthropicRequestRedactedThinkingContent, type AnthropicRequestRedactedThinkingContentType, AnthropicRequestTextContent, type AnthropicRequestTextContentType, AnthropicRequestThinkingContent, type AnthropicRequestThinkingContentType, AnthropicRequestTool, AnthropicRequestToolCallContent, type AnthropicRequestToolCallContentType, AnthropicRequestToolChoiceEnum, type AnthropicRequestToolChoiceEnumType, AnthropicRequestToolChoiceTool, type AnthropicRequestToolChoiceToolType, AnthropicRequestToolResponseContent, type AnthropicRequestToolResponseContentType, type AnthropicRequestToolType, type AnthropicRequestType, AnthropicRequestUserMessage, type AnthropicRequestUserMessageType, AnthropicStreamChatContentBlockDeltaResponse, AnthropicStreamChatContentBlockStartMcpToolResultResponse, AnthropicStreamChatContentBlockStartMcpToolUseResponse, AnthropicStreamChatContentBlockStartResponse, AnthropicStreamChatMessageDeltaResponse, AnthropicStreamChatMessageStartResponse, AnthropicThinkingChatModelModalities, AnthropicThinkingChatModelModalitiesEnum, BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, Claude3Haiku20240307, Claude3Haiku20240307Literal, Claude3Haiku20240307Options, type Claude3Haiku20240307OptionsType, Claude3Haiku20240307Schema, Claude3Opus20240229, Claude3Opus20240229Literal, Claude3Opus20240229Options, type Claude3Opus20240229OptionsType, Claude3Opus20240229Schema, Claude3Sonnet20240229, Claude3Sonnet20240229Literal, Claude3Sonnet20240229Options, type Claude3Sonnet20240229OptionsType, Claude3Sonnet20240229Schema, Claude3_5Haiku20241022, Claude3_5Haiku20241022Literal, Claude3_5Haiku20241022Options, type Claude3_5Haiku20241022OptionsType, Claude3_5Haiku20241022Schema, Claude3_5Sonnet20240620, Claude3_5Sonnet20240620Literal, Claude3_5Sonnet20240620Options, type Claude3_5Sonnet20240620OptionsType, Claude3_5Sonnet20240620Schema, Claude3_5Sonnet20241022, Claude3_5Sonnet20241022Literal, Claude3_5Sonnet20241022Options, type Claude3_5Sonnet20241022OptionsType, Claude3_5Sonnet20241022Schema, Claude3_7Sonnet20250219, Claude3_7Sonnet20250219Literal, Claude3_7Sonnet20250219Options, type Claude3_7Sonnet20250219OptionsType, Claude3_7Sonnet20250219Schema, Claude4Opus20250514, Claude4Opus20250514Literal, Claude4Opus20250514Options, type Claude4Opus20250514OptionsType, Claude4Opus20250514Schema, Claude4Sonnet20250514, Claude4Sonnet20250514Literal, Claude4Sonnet20250514Options, type Claude4Sonnet20250514OptionsType, Claude4Sonnet20250514Schema, ClaudeHaiku4_520251001, ClaudeHaiku4_520251001Literal, ClaudeHaiku4_520251001Options, type ClaudeHaiku4_520251001OptionsType, ClaudeHaiku4_520251001Schema, ClaudeOpus4_520251101, ClaudeOpus4_520251101Literal, ClaudeOpus4_520251101Options, type ClaudeOpus4_520251101OptionsType, ClaudeOpus4_520251101Schema, ClaudeOpus4_6, ClaudeOpus4_6Literal, ClaudeOpus4_6Options, type ClaudeOpus4_6OptionsType, ClaudeOpus4_6Schema, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, ClaudeSonnet4_6, ClaudeSonnet4_6Literal, ClaudeSonnet4_6Options, type ClaudeSonnet4_6OptionsType, ClaudeSonnet4_6Schema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, ProviderLiteral, Voyage3, Voyage3Lite, Voyage3LiteLiteral, Voyage3LiteOptions, type Voyage3LiteOptionsType, Voyage3LiteSchema, Voyage3Literal, Voyage3Options, type Voyage3OptionsType, Voyage3Schema, VoyageCode2, VoyageCode2Literal, VoyageCode2Options, type VoyageCode2OptionsType, VoyageCode2Schema, VoyageFinance2, VoyageFinance2Literal, VoyageFinance2Options, type VoyageFinance2OptionsType, VoyageFinance2Schema, VoyageLaw2, VoyageLaw2Literal, VoyageLaw2Options, type VoyageLaw2OptionsType, VoyageLaw2Schema, VoyageMultilingual2, VoyageMultilingual2Literal, VoyageMultilingual2Options, type VoyageMultilingual2OptionsType, VoyageMultilingual2Schema, encodingFormat, inputType, maxTokens, mcp, mcpServers, stop, temperature, toolChoice, topK, topP, truncation };
|
|
5261
|
+
export { Anthropic, AnthropicChatModelConfigs, AnthropicChatModelModalities, AnthropicChatModelModalitiesEnum, AnthropicChatModelRoles, AnthropicChatModelRolesMap, AnthropicCompleteChatMcpToolResultResponse, AnthropicCompleteChatMcpToolUseResponse, AnthropicCompleteChatResponse, type AnthropicCompleteChatResponseType, AnthropicEmbeddingModelConfigs, AnthropicEmbeddingModelModalities, AnthropicEmbeddingModelModalitiesEnum, AnthropicEmbeddingRequest, AnthropicEmbeddingRequestInput, type AnthropicEmbeddingRequestInputType, type AnthropicEmbeddingRequestType, AnthropicGetEmbeddingsResponse, AnthropicRequest, AnthropicRequestAssistantMessage, type AnthropicRequestAssistantMessageType, AnthropicRequestImageContent, type AnthropicRequestImageContentType, AnthropicRequestMcpServer, AnthropicRequestMcpServerToolConfiguration, type AnthropicRequestMcpServerToolConfigurationType, type AnthropicRequestMcpServerType, AnthropicRequestMcpToolResultContent, type AnthropicRequestMcpToolResultContentType, AnthropicRequestMcpToolUseContent, type AnthropicRequestMcpToolUseContentType, AnthropicRequestMessage, type AnthropicRequestMessageType, AnthropicRequestRedactedThinkingContent, type AnthropicRequestRedactedThinkingContentType, AnthropicRequestTextContent, type AnthropicRequestTextContentType, AnthropicRequestThinkingContent, type AnthropicRequestThinkingContentType, AnthropicRequestTool, AnthropicRequestToolCallContent, type AnthropicRequestToolCallContentType, AnthropicRequestToolChoiceEnum, type AnthropicRequestToolChoiceEnumType, AnthropicRequestToolChoiceTool, type AnthropicRequestToolChoiceToolType, AnthropicRequestToolResponseContent, type AnthropicRequestToolResponseContentType, type AnthropicRequestToolType, type AnthropicRequestType, AnthropicRequestUserMessage, type AnthropicRequestUserMessageType, AnthropicStreamChatContentBlockDeltaResponse, AnthropicStreamChatContentBlockStartMcpToolResultResponse, AnthropicStreamChatContentBlockStartMcpToolUseResponse, AnthropicStreamChatContentBlockStartResponse, AnthropicStreamChatMessageDeltaResponse, AnthropicStreamChatMessageStartResponse, AnthropicThinkingChatModelModalities, AnthropicThinkingChatModelModalitiesEnum, BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, Claude3Haiku20240307, Claude3Haiku20240307Literal, Claude3Haiku20240307Options, type Claude3Haiku20240307OptionsType, Claude3Haiku20240307Schema, Claude3Opus20240229, Claude3Opus20240229Literal, Claude3Opus20240229Options, type Claude3Opus20240229OptionsType, Claude3Opus20240229Schema, Claude3Sonnet20240229, Claude3Sonnet20240229Literal, Claude3Sonnet20240229Options, type Claude3Sonnet20240229OptionsType, Claude3Sonnet20240229Schema, Claude3_5Haiku20241022, Claude3_5Haiku20241022Literal, Claude3_5Haiku20241022Options, type Claude3_5Haiku20241022OptionsType, Claude3_5Haiku20241022Schema, Claude3_5Sonnet20240620, Claude3_5Sonnet20240620Literal, Claude3_5Sonnet20240620Options, type Claude3_5Sonnet20240620OptionsType, Claude3_5Sonnet20240620Schema, Claude3_5Sonnet20241022, Claude3_5Sonnet20241022Literal, Claude3_5Sonnet20241022Options, type Claude3_5Sonnet20241022OptionsType, Claude3_5Sonnet20241022Schema, Claude3_7Sonnet20250219, Claude3_7Sonnet20250219Literal, Claude3_7Sonnet20250219Options, type Claude3_7Sonnet20250219OptionsType, Claude3_7Sonnet20250219Schema, Claude4Opus20250514, Claude4Opus20250514Literal, Claude4Opus20250514Options, type Claude4Opus20250514OptionsType, Claude4Opus20250514Schema, Claude4Sonnet20250514, Claude4Sonnet20250514Literal, Claude4Sonnet20250514Options, type Claude4Sonnet20250514OptionsType, Claude4Sonnet20250514Schema, ClaudeHaiku4_520251001, ClaudeHaiku4_520251001Literal, ClaudeHaiku4_520251001Options, type ClaudeHaiku4_520251001OptionsType, ClaudeHaiku4_520251001Schema, ClaudeOpus4_520251101, ClaudeOpus4_520251101Literal, ClaudeOpus4_520251101Options, type ClaudeOpus4_520251101OptionsType, ClaudeOpus4_520251101Schema, ClaudeOpus4_6, ClaudeOpus4_6Literal, ClaudeOpus4_6Options, type ClaudeOpus4_6OptionsType, ClaudeOpus4_6Schema, ClaudeOpus4_7, ClaudeOpus4_7Literal, ClaudeOpus4_7Options, type ClaudeOpus4_7OptionsType, ClaudeOpus4_7Schema, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, ClaudeSonnet4_6, ClaudeSonnet4_6Literal, ClaudeSonnet4_6Options, type ClaudeSonnet4_6OptionsType, ClaudeSonnet4_6Schema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, ProviderLiteral, Voyage3, Voyage3Lite, Voyage3LiteLiteral, Voyage3LiteOptions, type Voyage3LiteOptionsType, Voyage3LiteSchema, Voyage3Literal, Voyage3Options, type Voyage3OptionsType, Voyage3Schema, VoyageCode2, VoyageCode2Literal, VoyageCode2Options, type VoyageCode2OptionsType, VoyageCode2Schema, VoyageFinance2, VoyageFinance2Literal, VoyageFinance2Options, type VoyageFinance2OptionsType, VoyageFinance2Schema, VoyageLaw2, VoyageLaw2Literal, VoyageLaw2Options, type VoyageLaw2OptionsType, VoyageLaw2Schema, VoyageMultilingual2, VoyageMultilingual2Literal, VoyageMultilingual2Options, type VoyageMultilingual2OptionsType, VoyageMultilingual2Schema, encodingFormat, inputType, maxTokens, mcp, mcpServers, stop, temperature, toolChoice, topK, topP, truncation };
|