@adaline/anthropic 1.8.0 → 1.9.1
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 +475 -1
- package/dist/index.d.ts +475 -1
- package/dist/index.js +129 -125
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -786,6 +786,29 @@ declare const Claude4Opus20250514Schema: {
|
|
|
786
786
|
title: string;
|
|
787
787
|
description: string;
|
|
788
788
|
objectSchema?: any;
|
|
789
|
+
} | {
|
|
790
|
+
type: "paired-select";
|
|
791
|
+
param: string;
|
|
792
|
+
title: string;
|
|
793
|
+
description: string;
|
|
794
|
+
fields: [{
|
|
795
|
+
label: string;
|
|
796
|
+
key: string;
|
|
797
|
+
choices: {
|
|
798
|
+
value: string;
|
|
799
|
+
label: string;
|
|
800
|
+
}[];
|
|
801
|
+
description?: string | undefined;
|
|
802
|
+
}, {
|
|
803
|
+
label: string;
|
|
804
|
+
key: string;
|
|
805
|
+
choices: {
|
|
806
|
+
value: string;
|
|
807
|
+
label: string;
|
|
808
|
+
}[];
|
|
809
|
+
description?: string | undefined;
|
|
810
|
+
}];
|
|
811
|
+
uniqueByField?: string | undefined;
|
|
789
812
|
} | {
|
|
790
813
|
type: "range";
|
|
791
814
|
param: string;
|
|
@@ -869,6 +892,29 @@ declare const Claude4Sonnet20250514Schema: {
|
|
|
869
892
|
title: string;
|
|
870
893
|
description: string;
|
|
871
894
|
objectSchema?: any;
|
|
895
|
+
} | {
|
|
896
|
+
type: "paired-select";
|
|
897
|
+
param: string;
|
|
898
|
+
title: string;
|
|
899
|
+
description: string;
|
|
900
|
+
fields: [{
|
|
901
|
+
label: string;
|
|
902
|
+
key: string;
|
|
903
|
+
choices: {
|
|
904
|
+
value: string;
|
|
905
|
+
label: string;
|
|
906
|
+
}[];
|
|
907
|
+
description?: string | undefined;
|
|
908
|
+
}, {
|
|
909
|
+
label: string;
|
|
910
|
+
key: string;
|
|
911
|
+
choices: {
|
|
912
|
+
value: string;
|
|
913
|
+
label: string;
|
|
914
|
+
}[];
|
|
915
|
+
description?: string | undefined;
|
|
916
|
+
}];
|
|
917
|
+
uniqueByField?: string | undefined;
|
|
872
918
|
} | {
|
|
873
919
|
type: "range";
|
|
874
920
|
param: string;
|
|
@@ -931,6 +977,112 @@ declare class Claude4Sonnet20250514 extends BaseChatModel {
|
|
|
931
977
|
constructor(options: Claude4Sonnet20250514OptionsType);
|
|
932
978
|
}
|
|
933
979
|
|
|
980
|
+
declare const ClaudeOpus4_520251101Literal = "claude-opus-4-5-20251101";
|
|
981
|
+
declare const ClaudeOpus4_520251101Schema: {
|
|
982
|
+
description: string;
|
|
983
|
+
name: string;
|
|
984
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
985
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response" | "reasoning", ...("text" | "image" | "tool-call" | "tool-response" | "reasoning")[]];
|
|
986
|
+
maxInputTokens: number;
|
|
987
|
+
maxOutputTokens: number;
|
|
988
|
+
config: {
|
|
989
|
+
def: Record<string, {
|
|
990
|
+
type: "multi-string";
|
|
991
|
+
param: string;
|
|
992
|
+
title: string;
|
|
993
|
+
description: string;
|
|
994
|
+
max: number;
|
|
995
|
+
} | {
|
|
996
|
+
type: "object-schema";
|
|
997
|
+
param: string;
|
|
998
|
+
title: string;
|
|
999
|
+
description: string;
|
|
1000
|
+
objectSchema?: any;
|
|
1001
|
+
} | {
|
|
1002
|
+
type: "paired-select";
|
|
1003
|
+
param: string;
|
|
1004
|
+
title: string;
|
|
1005
|
+
description: string;
|
|
1006
|
+
fields: [{
|
|
1007
|
+
label: string;
|
|
1008
|
+
key: string;
|
|
1009
|
+
choices: {
|
|
1010
|
+
value: string;
|
|
1011
|
+
label: string;
|
|
1012
|
+
}[];
|
|
1013
|
+
description?: string | undefined;
|
|
1014
|
+
}, {
|
|
1015
|
+
label: string;
|
|
1016
|
+
key: string;
|
|
1017
|
+
choices: {
|
|
1018
|
+
value: string;
|
|
1019
|
+
label: string;
|
|
1020
|
+
}[];
|
|
1021
|
+
description?: string | undefined;
|
|
1022
|
+
}];
|
|
1023
|
+
uniqueByField?: string | undefined;
|
|
1024
|
+
} | {
|
|
1025
|
+
type: "range";
|
|
1026
|
+
param: string;
|
|
1027
|
+
title: string;
|
|
1028
|
+
description: string;
|
|
1029
|
+
max: number;
|
|
1030
|
+
default: number;
|
|
1031
|
+
min: number;
|
|
1032
|
+
step: number;
|
|
1033
|
+
} | {
|
|
1034
|
+
type: "select-boolean";
|
|
1035
|
+
param: string;
|
|
1036
|
+
title: string;
|
|
1037
|
+
description: string;
|
|
1038
|
+
default: boolean | null;
|
|
1039
|
+
} | {
|
|
1040
|
+
type: "select-string";
|
|
1041
|
+
param: string;
|
|
1042
|
+
title: string;
|
|
1043
|
+
description: string;
|
|
1044
|
+
default: string;
|
|
1045
|
+
choices: string[];
|
|
1046
|
+
}>;
|
|
1047
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1048
|
+
};
|
|
1049
|
+
price: {
|
|
1050
|
+
modelName: string;
|
|
1051
|
+
currency: string;
|
|
1052
|
+
tokenRanges: {
|
|
1053
|
+
minTokens: number;
|
|
1054
|
+
prices: {
|
|
1055
|
+
base: {
|
|
1056
|
+
inputPricePerMillion: number;
|
|
1057
|
+
outputPricePerMillion: number;
|
|
1058
|
+
};
|
|
1059
|
+
};
|
|
1060
|
+
maxTokens?: number | null | undefined;
|
|
1061
|
+
}[];
|
|
1062
|
+
};
|
|
1063
|
+
maxReasoningTokens?: number | undefined;
|
|
1064
|
+
};
|
|
1065
|
+
declare const ClaudeOpus4_520251101Options: z.ZodObject<{
|
|
1066
|
+
modelName: z.ZodString;
|
|
1067
|
+
apiKey: z.ZodString;
|
|
1068
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
1069
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
}, "strip", z.ZodTypeAny, {
|
|
1071
|
+
modelName: string;
|
|
1072
|
+
apiKey: string;
|
|
1073
|
+
completeChatUrl?: string | undefined;
|
|
1074
|
+
streamChatUrl?: string | undefined;
|
|
1075
|
+
}, {
|
|
1076
|
+
modelName: string;
|
|
1077
|
+
apiKey: string;
|
|
1078
|
+
completeChatUrl?: string | undefined;
|
|
1079
|
+
streamChatUrl?: string | undefined;
|
|
1080
|
+
}>;
|
|
1081
|
+
type ClaudeOpus4_520251101OptionsType = z.infer<typeof ClaudeOpus4_520251101Options>;
|
|
1082
|
+
declare class ClaudeOpus4_520251101 extends BaseChatModel {
|
|
1083
|
+
constructor(options: ClaudeOpus4_520251101OptionsType);
|
|
1084
|
+
}
|
|
1085
|
+
|
|
934
1086
|
declare const ClaudeSonnet4_520250929Literal = "claude-sonnet-4-5-20250929";
|
|
935
1087
|
declare const ClaudeSonnet4_520250929Schema: {
|
|
936
1088
|
description: string;
|
|
@@ -952,6 +1104,29 @@ declare const ClaudeSonnet4_520250929Schema: {
|
|
|
952
1104
|
title: string;
|
|
953
1105
|
description: string;
|
|
954
1106
|
objectSchema?: any;
|
|
1107
|
+
} | {
|
|
1108
|
+
type: "paired-select";
|
|
1109
|
+
param: string;
|
|
1110
|
+
title: string;
|
|
1111
|
+
description: string;
|
|
1112
|
+
fields: [{
|
|
1113
|
+
label: string;
|
|
1114
|
+
key: string;
|
|
1115
|
+
choices: {
|
|
1116
|
+
value: string;
|
|
1117
|
+
label: string;
|
|
1118
|
+
}[];
|
|
1119
|
+
description?: string | undefined;
|
|
1120
|
+
}, {
|
|
1121
|
+
label: string;
|
|
1122
|
+
key: string;
|
|
1123
|
+
choices: {
|
|
1124
|
+
value: string;
|
|
1125
|
+
label: string;
|
|
1126
|
+
}[];
|
|
1127
|
+
description?: string | undefined;
|
|
1128
|
+
}];
|
|
1129
|
+
uniqueByField?: string | undefined;
|
|
955
1130
|
} | {
|
|
956
1131
|
type: "range";
|
|
957
1132
|
param: string;
|
|
@@ -1035,6 +1210,29 @@ declare const Claude3_5Sonnet20240620Schema: {
|
|
|
1035
1210
|
title: string;
|
|
1036
1211
|
description: string;
|
|
1037
1212
|
objectSchema?: any;
|
|
1213
|
+
} | {
|
|
1214
|
+
type: "paired-select";
|
|
1215
|
+
param: string;
|
|
1216
|
+
title: string;
|
|
1217
|
+
description: string;
|
|
1218
|
+
fields: [{
|
|
1219
|
+
label: string;
|
|
1220
|
+
key: string;
|
|
1221
|
+
choices: {
|
|
1222
|
+
value: string;
|
|
1223
|
+
label: string;
|
|
1224
|
+
}[];
|
|
1225
|
+
description?: string | undefined;
|
|
1226
|
+
}, {
|
|
1227
|
+
label: string;
|
|
1228
|
+
key: string;
|
|
1229
|
+
choices: {
|
|
1230
|
+
value: string;
|
|
1231
|
+
label: string;
|
|
1232
|
+
}[];
|
|
1233
|
+
description?: string | undefined;
|
|
1234
|
+
}];
|
|
1235
|
+
uniqueByField?: string | undefined;
|
|
1038
1236
|
} | {
|
|
1039
1237
|
type: "range";
|
|
1040
1238
|
param: string;
|
|
@@ -1118,6 +1316,29 @@ declare const Claude3_5Sonnet20241022Schema: {
|
|
|
1118
1316
|
title: string;
|
|
1119
1317
|
description: string;
|
|
1120
1318
|
objectSchema?: any;
|
|
1319
|
+
} | {
|
|
1320
|
+
type: "paired-select";
|
|
1321
|
+
param: string;
|
|
1322
|
+
title: string;
|
|
1323
|
+
description: string;
|
|
1324
|
+
fields: [{
|
|
1325
|
+
label: string;
|
|
1326
|
+
key: string;
|
|
1327
|
+
choices: {
|
|
1328
|
+
value: string;
|
|
1329
|
+
label: string;
|
|
1330
|
+
}[];
|
|
1331
|
+
description?: string | undefined;
|
|
1332
|
+
}, {
|
|
1333
|
+
label: string;
|
|
1334
|
+
key: string;
|
|
1335
|
+
choices: {
|
|
1336
|
+
value: string;
|
|
1337
|
+
label: string;
|
|
1338
|
+
}[];
|
|
1339
|
+
description?: string | undefined;
|
|
1340
|
+
}];
|
|
1341
|
+
uniqueByField?: string | undefined;
|
|
1121
1342
|
} | {
|
|
1122
1343
|
type: "range";
|
|
1123
1344
|
param: string;
|
|
@@ -1201,6 +1422,29 @@ declare const Claude3_7Sonnet20250219Schema: {
|
|
|
1201
1422
|
title: string;
|
|
1202
1423
|
description: string;
|
|
1203
1424
|
objectSchema?: any;
|
|
1425
|
+
} | {
|
|
1426
|
+
type: "paired-select";
|
|
1427
|
+
param: string;
|
|
1428
|
+
title: string;
|
|
1429
|
+
description: string;
|
|
1430
|
+
fields: [{
|
|
1431
|
+
label: string;
|
|
1432
|
+
key: string;
|
|
1433
|
+
choices: {
|
|
1434
|
+
value: string;
|
|
1435
|
+
label: string;
|
|
1436
|
+
}[];
|
|
1437
|
+
description?: string | undefined;
|
|
1438
|
+
}, {
|
|
1439
|
+
label: string;
|
|
1440
|
+
key: string;
|
|
1441
|
+
choices: {
|
|
1442
|
+
value: string;
|
|
1443
|
+
label: string;
|
|
1444
|
+
}[];
|
|
1445
|
+
description?: string | undefined;
|
|
1446
|
+
}];
|
|
1447
|
+
uniqueByField?: string | undefined;
|
|
1204
1448
|
} | {
|
|
1205
1449
|
type: "range";
|
|
1206
1450
|
param: string;
|
|
@@ -1285,6 +1529,29 @@ declare const Claude3Haiku20240307Schema: {
|
|
|
1285
1529
|
title: string;
|
|
1286
1530
|
description: string;
|
|
1287
1531
|
objectSchema?: any;
|
|
1532
|
+
} | {
|
|
1533
|
+
type: "paired-select";
|
|
1534
|
+
param: string;
|
|
1535
|
+
title: string;
|
|
1536
|
+
description: string;
|
|
1537
|
+
fields: [{
|
|
1538
|
+
label: string;
|
|
1539
|
+
key: string;
|
|
1540
|
+
choices: {
|
|
1541
|
+
value: string;
|
|
1542
|
+
label: string;
|
|
1543
|
+
}[];
|
|
1544
|
+
description?: string | undefined;
|
|
1545
|
+
}, {
|
|
1546
|
+
label: string;
|
|
1547
|
+
key: string;
|
|
1548
|
+
choices: {
|
|
1549
|
+
value: string;
|
|
1550
|
+
label: string;
|
|
1551
|
+
}[];
|
|
1552
|
+
description?: string | undefined;
|
|
1553
|
+
}];
|
|
1554
|
+
uniqueByField?: string | undefined;
|
|
1288
1555
|
} | {
|
|
1289
1556
|
type: "range";
|
|
1290
1557
|
param: string;
|
|
@@ -1368,6 +1635,29 @@ declare const Claude3_5Haiku20241022Schema: {
|
|
|
1368
1635
|
title: string;
|
|
1369
1636
|
description: string;
|
|
1370
1637
|
objectSchema?: any;
|
|
1638
|
+
} | {
|
|
1639
|
+
type: "paired-select";
|
|
1640
|
+
param: string;
|
|
1641
|
+
title: string;
|
|
1642
|
+
description: string;
|
|
1643
|
+
fields: [{
|
|
1644
|
+
label: string;
|
|
1645
|
+
key: string;
|
|
1646
|
+
choices: {
|
|
1647
|
+
value: string;
|
|
1648
|
+
label: string;
|
|
1649
|
+
}[];
|
|
1650
|
+
description?: string | undefined;
|
|
1651
|
+
}, {
|
|
1652
|
+
label: string;
|
|
1653
|
+
key: string;
|
|
1654
|
+
choices: {
|
|
1655
|
+
value: string;
|
|
1656
|
+
label: string;
|
|
1657
|
+
}[];
|
|
1658
|
+
description?: string | undefined;
|
|
1659
|
+
}];
|
|
1660
|
+
uniqueByField?: string | undefined;
|
|
1371
1661
|
} | {
|
|
1372
1662
|
type: "range";
|
|
1373
1663
|
param: string;
|
|
@@ -1451,6 +1741,29 @@ declare const Claude3Opus20240229Schema: {
|
|
|
1451
1741
|
title: string;
|
|
1452
1742
|
description: string;
|
|
1453
1743
|
objectSchema?: any;
|
|
1744
|
+
} | {
|
|
1745
|
+
type: "paired-select";
|
|
1746
|
+
param: string;
|
|
1747
|
+
title: string;
|
|
1748
|
+
description: string;
|
|
1749
|
+
fields: [{
|
|
1750
|
+
label: string;
|
|
1751
|
+
key: string;
|
|
1752
|
+
choices: {
|
|
1753
|
+
value: string;
|
|
1754
|
+
label: string;
|
|
1755
|
+
}[];
|
|
1756
|
+
description?: string | undefined;
|
|
1757
|
+
}, {
|
|
1758
|
+
label: string;
|
|
1759
|
+
key: string;
|
|
1760
|
+
choices: {
|
|
1761
|
+
value: string;
|
|
1762
|
+
label: string;
|
|
1763
|
+
}[];
|
|
1764
|
+
description?: string | undefined;
|
|
1765
|
+
}];
|
|
1766
|
+
uniqueByField?: string | undefined;
|
|
1454
1767
|
} | {
|
|
1455
1768
|
type: "range";
|
|
1456
1769
|
param: string;
|
|
@@ -1534,6 +1847,29 @@ declare const Claude3Sonnet20240229Schema: {
|
|
|
1534
1847
|
title: string;
|
|
1535
1848
|
description: string;
|
|
1536
1849
|
objectSchema?: any;
|
|
1850
|
+
} | {
|
|
1851
|
+
type: "paired-select";
|
|
1852
|
+
param: string;
|
|
1853
|
+
title: string;
|
|
1854
|
+
description: string;
|
|
1855
|
+
fields: [{
|
|
1856
|
+
label: string;
|
|
1857
|
+
key: string;
|
|
1858
|
+
choices: {
|
|
1859
|
+
value: string;
|
|
1860
|
+
label: string;
|
|
1861
|
+
}[];
|
|
1862
|
+
description?: string | undefined;
|
|
1863
|
+
}, {
|
|
1864
|
+
label: string;
|
|
1865
|
+
key: string;
|
|
1866
|
+
choices: {
|
|
1867
|
+
value: string;
|
|
1868
|
+
label: string;
|
|
1869
|
+
}[];
|
|
1870
|
+
description?: string | undefined;
|
|
1871
|
+
}];
|
|
1872
|
+
uniqueByField?: string | undefined;
|
|
1537
1873
|
} | {
|
|
1538
1874
|
type: "range";
|
|
1539
1875
|
param: string;
|
|
@@ -3812,6 +4148,29 @@ declare const VoyageCode2Schema: {
|
|
|
3812
4148
|
title: string;
|
|
3813
4149
|
description: string;
|
|
3814
4150
|
objectSchema?: any;
|
|
4151
|
+
} | {
|
|
4152
|
+
type: "paired-select";
|
|
4153
|
+
param: string;
|
|
4154
|
+
title: string;
|
|
4155
|
+
description: string;
|
|
4156
|
+
fields: [{
|
|
4157
|
+
label: string;
|
|
4158
|
+
key: string;
|
|
4159
|
+
choices: {
|
|
4160
|
+
value: string;
|
|
4161
|
+
label: string;
|
|
4162
|
+
}[];
|
|
4163
|
+
description?: string | undefined;
|
|
4164
|
+
}, {
|
|
4165
|
+
label: string;
|
|
4166
|
+
key: string;
|
|
4167
|
+
choices: {
|
|
4168
|
+
value: string;
|
|
4169
|
+
label: string;
|
|
4170
|
+
}[];
|
|
4171
|
+
description?: string | undefined;
|
|
4172
|
+
}];
|
|
4173
|
+
uniqueByField?: string | undefined;
|
|
3815
4174
|
} | {
|
|
3816
4175
|
type: "range";
|
|
3817
4176
|
param: string;
|
|
@@ -3876,6 +4235,29 @@ declare const VoyageLaw2Schema: {
|
|
|
3876
4235
|
title: string;
|
|
3877
4236
|
description: string;
|
|
3878
4237
|
objectSchema?: any;
|
|
4238
|
+
} | {
|
|
4239
|
+
type: "paired-select";
|
|
4240
|
+
param: string;
|
|
4241
|
+
title: string;
|
|
4242
|
+
description: string;
|
|
4243
|
+
fields: [{
|
|
4244
|
+
label: string;
|
|
4245
|
+
key: string;
|
|
4246
|
+
choices: {
|
|
4247
|
+
value: string;
|
|
4248
|
+
label: string;
|
|
4249
|
+
}[];
|
|
4250
|
+
description?: string | undefined;
|
|
4251
|
+
}, {
|
|
4252
|
+
label: string;
|
|
4253
|
+
key: string;
|
|
4254
|
+
choices: {
|
|
4255
|
+
value: string;
|
|
4256
|
+
label: string;
|
|
4257
|
+
}[];
|
|
4258
|
+
description?: string | undefined;
|
|
4259
|
+
}];
|
|
4260
|
+
uniqueByField?: string | undefined;
|
|
3879
4261
|
} | {
|
|
3880
4262
|
type: "range";
|
|
3881
4263
|
param: string;
|
|
@@ -3940,6 +4322,29 @@ declare const VoyageMultilingual2Schema: {
|
|
|
3940
4322
|
title: string;
|
|
3941
4323
|
description: string;
|
|
3942
4324
|
objectSchema?: any;
|
|
4325
|
+
} | {
|
|
4326
|
+
type: "paired-select";
|
|
4327
|
+
param: string;
|
|
4328
|
+
title: string;
|
|
4329
|
+
description: string;
|
|
4330
|
+
fields: [{
|
|
4331
|
+
label: string;
|
|
4332
|
+
key: string;
|
|
4333
|
+
choices: {
|
|
4334
|
+
value: string;
|
|
4335
|
+
label: string;
|
|
4336
|
+
}[];
|
|
4337
|
+
description?: string | undefined;
|
|
4338
|
+
}, {
|
|
4339
|
+
label: string;
|
|
4340
|
+
key: string;
|
|
4341
|
+
choices: {
|
|
4342
|
+
value: string;
|
|
4343
|
+
label: string;
|
|
4344
|
+
}[];
|
|
4345
|
+
description?: string | undefined;
|
|
4346
|
+
}];
|
|
4347
|
+
uniqueByField?: string | undefined;
|
|
3943
4348
|
} | {
|
|
3944
4349
|
type: "range";
|
|
3945
4350
|
param: string;
|
|
@@ -4004,6 +4409,29 @@ declare const VoyageFinance2Schema: {
|
|
|
4004
4409
|
title: string;
|
|
4005
4410
|
description: string;
|
|
4006
4411
|
objectSchema?: any;
|
|
4412
|
+
} | {
|
|
4413
|
+
type: "paired-select";
|
|
4414
|
+
param: string;
|
|
4415
|
+
title: string;
|
|
4416
|
+
description: string;
|
|
4417
|
+
fields: [{
|
|
4418
|
+
label: string;
|
|
4419
|
+
key: string;
|
|
4420
|
+
choices: {
|
|
4421
|
+
value: string;
|
|
4422
|
+
label: string;
|
|
4423
|
+
}[];
|
|
4424
|
+
description?: string | undefined;
|
|
4425
|
+
}, {
|
|
4426
|
+
label: string;
|
|
4427
|
+
key: string;
|
|
4428
|
+
choices: {
|
|
4429
|
+
value: string;
|
|
4430
|
+
label: string;
|
|
4431
|
+
}[];
|
|
4432
|
+
description?: string | undefined;
|
|
4433
|
+
}];
|
|
4434
|
+
uniqueByField?: string | undefined;
|
|
4007
4435
|
} | {
|
|
4008
4436
|
type: "range";
|
|
4009
4437
|
param: string;
|
|
@@ -4068,6 +4496,29 @@ declare const Voyage3LiteSchema: {
|
|
|
4068
4496
|
title: string;
|
|
4069
4497
|
description: string;
|
|
4070
4498
|
objectSchema?: any;
|
|
4499
|
+
} | {
|
|
4500
|
+
type: "paired-select";
|
|
4501
|
+
param: string;
|
|
4502
|
+
title: string;
|
|
4503
|
+
description: string;
|
|
4504
|
+
fields: [{
|
|
4505
|
+
label: string;
|
|
4506
|
+
key: string;
|
|
4507
|
+
choices: {
|
|
4508
|
+
value: string;
|
|
4509
|
+
label: string;
|
|
4510
|
+
}[];
|
|
4511
|
+
description?: string | undefined;
|
|
4512
|
+
}, {
|
|
4513
|
+
label: string;
|
|
4514
|
+
key: string;
|
|
4515
|
+
choices: {
|
|
4516
|
+
value: string;
|
|
4517
|
+
label: string;
|
|
4518
|
+
}[];
|
|
4519
|
+
description?: string | undefined;
|
|
4520
|
+
}];
|
|
4521
|
+
uniqueByField?: string | undefined;
|
|
4071
4522
|
} | {
|
|
4072
4523
|
type: "range";
|
|
4073
4524
|
param: string;
|
|
@@ -4132,6 +4583,29 @@ declare const Voyage3Schema: {
|
|
|
4132
4583
|
title: string;
|
|
4133
4584
|
description: string;
|
|
4134
4585
|
objectSchema?: any;
|
|
4586
|
+
} | {
|
|
4587
|
+
type: "paired-select";
|
|
4588
|
+
param: string;
|
|
4589
|
+
title: string;
|
|
4590
|
+
description: string;
|
|
4591
|
+
fields: [{
|
|
4592
|
+
label: string;
|
|
4593
|
+
key: string;
|
|
4594
|
+
choices: {
|
|
4595
|
+
value: string;
|
|
4596
|
+
label: string;
|
|
4597
|
+
}[];
|
|
4598
|
+
description?: string | undefined;
|
|
4599
|
+
}, {
|
|
4600
|
+
label: string;
|
|
4601
|
+
key: string;
|
|
4602
|
+
choices: {
|
|
4603
|
+
value: string;
|
|
4604
|
+
label: string;
|
|
4605
|
+
}[];
|
|
4606
|
+
description?: string | undefined;
|
|
4607
|
+
}];
|
|
4608
|
+
uniqueByField?: string | undefined;
|
|
4135
4609
|
} | {
|
|
4136
4610
|
type: "range";
|
|
4137
4611
|
param: string;
|
|
@@ -4192,4 +4666,4 @@ declare class Anthropic<C extends BaseChatModelOptionsType, E extends BaseEmbedd
|
|
|
4192
4666
|
embeddingModel(options: E): EmbeddingModelV1;
|
|
4193
4667
|
}
|
|
4194
4668
|
|
|
4195
|
-
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, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, 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 };
|
|
4669
|
+
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, ClaudeOpus4_520251101, ClaudeOpus4_520251101Literal, ClaudeOpus4_520251101Options, type ClaudeOpus4_520251101OptionsType, ClaudeOpus4_520251101Schema, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, 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 };
|