@clinebot/llms 0.0.13 → 0.0.15
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.browser.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -2
- package/src/models/generated.ts +57 -29
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clinebot/llms",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Config-driven SDK for selecting, extending, and instantiating LLM providers and models",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@clinebot/shared": "0.0.
|
|
8
|
+
"@clinebot/shared": "0.0.15",
|
|
9
9
|
"@ai-sdk/amazon-bedrock": "^4.0.67",
|
|
10
10
|
"@ai-sdk/google-vertex": "^4.0.74",
|
|
11
11
|
"@ai-sdk/mistral": "^3.0.24",
|
|
@@ -61,6 +61,9 @@
|
|
|
61
61
|
"clean": "rm -rf dist node_modules",
|
|
62
62
|
"generate:models": "bun run scripts/generate-models.ts"
|
|
63
63
|
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=20"
|
|
66
|
+
},
|
|
64
67
|
"type": "module",
|
|
65
68
|
"types": "./dist/index.d.ts"
|
|
66
69
|
}
|
package/src/models/generated.ts
CHANGED
|
@@ -14,7 +14,7 @@ export const GENERATED_PROVIDER_MODELS: {
|
|
|
14
14
|
version: number;
|
|
15
15
|
providers: Record<string, Record<string, ModelInfo>>;
|
|
16
16
|
} = {
|
|
17
|
-
version:
|
|
17
|
+
version: 1774477517254,
|
|
18
18
|
providers: {
|
|
19
19
|
aihubmix: {
|
|
20
20
|
"claude-sonnet-4-6": {
|
|
@@ -1121,6 +1121,48 @@ export const GENERATED_PROVIDER_MODELS: {
|
|
|
1121
1121
|
},
|
|
1122
1122
|
},
|
|
1123
1123
|
bedrock: {
|
|
1124
|
+
"minimax.minimax-m2.5": {
|
|
1125
|
+
id: "minimax.minimax-m2.5",
|
|
1126
|
+
name: "MiniMax M2.5",
|
|
1127
|
+
contextWindow: 196608,
|
|
1128
|
+
maxTokens: 98304,
|
|
1129
|
+
capabilities: ["tools", "reasoning", "temperature"],
|
|
1130
|
+
pricing: {
|
|
1131
|
+
input: 0.3,
|
|
1132
|
+
output: 1.2,
|
|
1133
|
+
cacheRead: 0,
|
|
1134
|
+
cacheWrite: 0,
|
|
1135
|
+
},
|
|
1136
|
+
releaseDate: "2026-03-18",
|
|
1137
|
+
},
|
|
1138
|
+
"zai.glm-5": {
|
|
1139
|
+
id: "zai.glm-5",
|
|
1140
|
+
name: "GLM-5",
|
|
1141
|
+
contextWindow: 202752,
|
|
1142
|
+
maxTokens: 101376,
|
|
1143
|
+
capabilities: ["tools", "reasoning", "temperature"],
|
|
1144
|
+
pricing: {
|
|
1145
|
+
input: 1,
|
|
1146
|
+
output: 3.2,
|
|
1147
|
+
cacheRead: 0,
|
|
1148
|
+
cacheWrite: 0,
|
|
1149
|
+
},
|
|
1150
|
+
releaseDate: "2026-03-18",
|
|
1151
|
+
},
|
|
1152
|
+
"nvidia.nemotron-super-3-120b": {
|
|
1153
|
+
id: "nvidia.nemotron-super-3-120b",
|
|
1154
|
+
name: "NVIDIA Nemotron 3 Super 120B A12B",
|
|
1155
|
+
contextWindow: 262144,
|
|
1156
|
+
maxTokens: 131072,
|
|
1157
|
+
capabilities: ["tools", "reasoning", "temperature"],
|
|
1158
|
+
pricing: {
|
|
1159
|
+
input: 0.15,
|
|
1160
|
+
output: 0.65,
|
|
1161
|
+
cacheRead: 0,
|
|
1162
|
+
cacheWrite: 0,
|
|
1163
|
+
},
|
|
1164
|
+
releaseDate: "2026-03-11",
|
|
1165
|
+
},
|
|
1124
1166
|
"anthropic.claude-sonnet-4-6": {
|
|
1125
1167
|
id: "anthropic.claude-sonnet-4-6",
|
|
1126
1168
|
name: "Claude Sonnet 4.6",
|
|
@@ -1191,34 +1233,6 @@ export const GENERATED_PROVIDER_MODELS: {
|
|
|
1191
1233
|
},
|
|
1192
1234
|
releaseDate: "2026-02-17",
|
|
1193
1235
|
},
|
|
1194
|
-
"minimax.minimax-m2.5": {
|
|
1195
|
-
id: "minimax.minimax-m2.5",
|
|
1196
|
-
name: "MiniMax M2.5",
|
|
1197
|
-
contextWindow: 1000000,
|
|
1198
|
-
maxTokens: 131072,
|
|
1199
|
-
capabilities: ["tools", "reasoning", "temperature"],
|
|
1200
|
-
pricing: {
|
|
1201
|
-
input: 0.3,
|
|
1202
|
-
output: 1.2,
|
|
1203
|
-
cacheRead: 0,
|
|
1204
|
-
cacheWrite: 0,
|
|
1205
|
-
},
|
|
1206
|
-
releaseDate: "2026-02-12",
|
|
1207
|
-
},
|
|
1208
|
-
"zai.glm-5": {
|
|
1209
|
-
id: "zai.glm-5",
|
|
1210
|
-
name: "GLM-5",
|
|
1211
|
-
contextWindow: 200000,
|
|
1212
|
-
maxTokens: 131072,
|
|
1213
|
-
capabilities: ["tools", "reasoning", "temperature"],
|
|
1214
|
-
pricing: {
|
|
1215
|
-
input: 1,
|
|
1216
|
-
output: 3.2,
|
|
1217
|
-
cacheRead: 0,
|
|
1218
|
-
cacheWrite: 0,
|
|
1219
|
-
},
|
|
1220
|
-
releaseDate: "2026-02-11",
|
|
1221
|
-
},
|
|
1222
1236
|
"deepseek.v3.2": {
|
|
1223
1237
|
id: "deepseek.v3.2",
|
|
1224
1238
|
name: "DeepSeek-V3.2",
|
|
@@ -11640,6 +11654,20 @@ export const GENERATED_PROVIDER_MODELS: {
|
|
|
11640
11654
|
},
|
|
11641
11655
|
releaseDate: "2026-01-19",
|
|
11642
11656
|
},
|
|
11657
|
+
"glm-4.7-flashx": {
|
|
11658
|
+
id: "glm-4.7-flashx",
|
|
11659
|
+
name: "GLM-4.7-FlashX",
|
|
11660
|
+
contextWindow: 200000,
|
|
11661
|
+
maxTokens: 131072,
|
|
11662
|
+
capabilities: ["tools", "reasoning", "temperature"],
|
|
11663
|
+
pricing: {
|
|
11664
|
+
input: 0.07,
|
|
11665
|
+
output: 0.4,
|
|
11666
|
+
cacheRead: 0.01,
|
|
11667
|
+
cacheWrite: 0,
|
|
11668
|
+
},
|
|
11669
|
+
releaseDate: "2026-01-19",
|
|
11670
|
+
},
|
|
11643
11671
|
"glm-4.7": {
|
|
11644
11672
|
id: "glm-4.7",
|
|
11645
11673
|
name: "GLM-4.7",
|