llm-checker 3.1.0
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/LICENSE +21 -0
- package/README.md +418 -0
- package/analyzer/compatibility.js +584 -0
- package/analyzer/performance.js +505 -0
- package/bin/CLAUDE.md +12 -0
- package/bin/enhanced_cli.js +3118 -0
- package/bin/test-deterministic.js +41 -0
- package/package.json +96 -0
- package/src/CLAUDE.md +12 -0
- package/src/ai/intelligent-selector.js +615 -0
- package/src/ai/model-selector.js +312 -0
- package/src/ai/multi-objective-selector.js +820 -0
- package/src/commands/check.js +58 -0
- package/src/data/CLAUDE.md +11 -0
- package/src/data/model-database.js +637 -0
- package/src/data/sync-manager.js +279 -0
- package/src/hardware/CLAUDE.md +12 -0
- package/src/hardware/backends/CLAUDE.md +11 -0
- package/src/hardware/backends/apple-silicon.js +318 -0
- package/src/hardware/backends/cpu-detector.js +490 -0
- package/src/hardware/backends/cuda-detector.js +417 -0
- package/src/hardware/backends/intel-detector.js +436 -0
- package/src/hardware/backends/rocm-detector.js +440 -0
- package/src/hardware/detector.js +573 -0
- package/src/hardware/pc-optimizer.js +635 -0
- package/src/hardware/specs.js +286 -0
- package/src/hardware/unified-detector.js +442 -0
- package/src/index.js +2289 -0
- package/src/models/CLAUDE.md +17 -0
- package/src/models/ai-check-selector.js +806 -0
- package/src/models/catalog.json +426 -0
- package/src/models/deterministic-selector.js +1145 -0
- package/src/models/expanded_database.js +1142 -0
- package/src/models/intelligent-selector.js +532 -0
- package/src/models/requirements.js +310 -0
- package/src/models/scoring-config.js +57 -0
- package/src/models/scoring-engine.js +715 -0
- package/src/ollama/.cache/README.md +33 -0
- package/src/ollama/CLAUDE.md +24 -0
- package/src/ollama/client.js +438 -0
- package/src/ollama/enhanced-client.js +113 -0
- package/src/ollama/enhanced-scraper.js +634 -0
- package/src/ollama/manager.js +357 -0
- package/src/ollama/native-scraper.js +776 -0
- package/src/plugins/CLAUDE.md +11 -0
- package/src/plugins/examples/custom_model_plugin.js +87 -0
- package/src/plugins/index.js +295 -0
- package/src/utils/CLAUDE.md +11 -0
- package/src/utils/config.js +359 -0
- package/src/utils/formatter.js +315 -0
- package/src/utils/logger.js +272 -0
- package/src/utils/model-classifier.js +167 -0
- package/src/utils/verbose-progress.js +266 -0
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0",
|
|
3
|
+
"updated": "2026-02-12T23:00:00.000Z",
|
|
4
|
+
"models": [
|
|
5
|
+
{
|
|
6
|
+
"name": "qwen3:14b",
|
|
7
|
+
"family": "qwen2.5",
|
|
8
|
+
"paramsB": 14,
|
|
9
|
+
"ctxMax": 32768,
|
|
10
|
+
"quant": "Q4_K_M",
|
|
11
|
+
"sizeGB": 9.0,
|
|
12
|
+
"modalities": ["text"],
|
|
13
|
+
"tags": ["chat", "instruct", "multilingual"],
|
|
14
|
+
"model_identifier": "qwen3:14b",
|
|
15
|
+
"pulls": 5000000
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "qwen2.5:14b",
|
|
19
|
+
"family": "qwen2.5",
|
|
20
|
+
"paramsB": 14,
|
|
21
|
+
"ctxMax": 131072,
|
|
22
|
+
"quant": "Q4_K_M",
|
|
23
|
+
"sizeGB": 9.0,
|
|
24
|
+
"modalities": ["text"],
|
|
25
|
+
"tags": ["chat", "instruct", "multilingual"],
|
|
26
|
+
"model_identifier": "qwen2.5:14b",
|
|
27
|
+
"pulls": 8000000
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "qwen2.5:7b",
|
|
31
|
+
"family": "qwen2.5",
|
|
32
|
+
"paramsB": 7,
|
|
33
|
+
"ctxMax": 131072,
|
|
34
|
+
"quant": "Q4_K_M",
|
|
35
|
+
"sizeGB": 4.5,
|
|
36
|
+
"modalities": ["text"],
|
|
37
|
+
"tags": ["chat", "instruct", "multilingual"],
|
|
38
|
+
"model_identifier": "qwen2.5:7b",
|
|
39
|
+
"pulls": 15000000
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "qwen2.5-coder:32b",
|
|
43
|
+
"family": "qwen2.5",
|
|
44
|
+
"paramsB": 32,
|
|
45
|
+
"ctxMax": 131072,
|
|
46
|
+
"quant": "Q4_K_M",
|
|
47
|
+
"sizeGB": 19.0,
|
|
48
|
+
"modalities": ["text"],
|
|
49
|
+
"tags": ["coder", "instruct"],
|
|
50
|
+
"model_identifier": "qwen2.5-coder:32b",
|
|
51
|
+
"pulls": 4000000
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "qwen2.5-coder:14b",
|
|
55
|
+
"family": "qwen2.5",
|
|
56
|
+
"paramsB": 14,
|
|
57
|
+
"ctxMax": 131072,
|
|
58
|
+
"quant": "Q4_K_M",
|
|
59
|
+
"sizeGB": 8.5,
|
|
60
|
+
"modalities": ["text"],
|
|
61
|
+
"tags": ["coder", "instruct"],
|
|
62
|
+
"model_identifier": "qwen2.5-coder:14b",
|
|
63
|
+
"pulls": 6000000
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "qwen2.5-coder:7b",
|
|
67
|
+
"family": "qwen2.5",
|
|
68
|
+
"paramsB": 7,
|
|
69
|
+
"ctxMax": 131072,
|
|
70
|
+
"quant": "Q4_K_M",
|
|
71
|
+
"sizeGB": 4.4,
|
|
72
|
+
"modalities": ["text"],
|
|
73
|
+
"tags": ["coder", "instruct"],
|
|
74
|
+
"model_identifier": "qwen2.5-coder:7b",
|
|
75
|
+
"pulls": 20000000
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "qwen2.5-coder:1.5b",
|
|
79
|
+
"family": "qwen2.5",
|
|
80
|
+
"paramsB": 1.5,
|
|
81
|
+
"ctxMax": 32768,
|
|
82
|
+
"quant": "Q4_K_M",
|
|
83
|
+
"sizeGB": 1.1,
|
|
84
|
+
"modalities": ["text"],
|
|
85
|
+
"tags": ["coder", "instruct"],
|
|
86
|
+
"model_identifier": "qwen2.5-coder:1.5b",
|
|
87
|
+
"pulls": 5000000
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "llama3.3:8b",
|
|
91
|
+
"family": "llama3.2",
|
|
92
|
+
"paramsB": 8,
|
|
93
|
+
"ctxMax": 131072,
|
|
94
|
+
"quant": "Q4_K_M",
|
|
95
|
+
"sizeGB": 4.9,
|
|
96
|
+
"modalities": ["text"],
|
|
97
|
+
"tags": ["chat", "instruct"],
|
|
98
|
+
"model_identifier": "llama3.3:8b",
|
|
99
|
+
"pulls": 108000000
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "llama3.1:8b",
|
|
103
|
+
"family": "llama3.1",
|
|
104
|
+
"paramsB": 8,
|
|
105
|
+
"ctxMax": 131072,
|
|
106
|
+
"quant": "Q4_K_M",
|
|
107
|
+
"sizeGB": 4.7,
|
|
108
|
+
"modalities": ["text"],
|
|
109
|
+
"tags": ["chat", "instruct"],
|
|
110
|
+
"model_identifier": "llama3.1:8b",
|
|
111
|
+
"pulls": 108000000
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "llama3.2:3b",
|
|
115
|
+
"family": "llama3.2",
|
|
116
|
+
"paramsB": 3,
|
|
117
|
+
"ctxMax": 131072,
|
|
118
|
+
"quant": "Q4_K_M",
|
|
119
|
+
"sizeGB": 2.0,
|
|
120
|
+
"modalities": ["text"],
|
|
121
|
+
"tags": ["chat", "instruct"],
|
|
122
|
+
"model_identifier": "llama3.2:3b",
|
|
123
|
+
"pulls": 30000000
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "llama3.2:1b",
|
|
127
|
+
"family": "llama3.2",
|
|
128
|
+
"paramsB": 1,
|
|
129
|
+
"ctxMax": 131072,
|
|
130
|
+
"quant": "Q4_K_M",
|
|
131
|
+
"sizeGB": 0.7,
|
|
132
|
+
"modalities": ["text"],
|
|
133
|
+
"tags": ["chat", "instruct"],
|
|
134
|
+
"model_identifier": "llama3.2:1b",
|
|
135
|
+
"pulls": 15000000
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "deepseek-r1:14b",
|
|
139
|
+
"family": "deepseek",
|
|
140
|
+
"paramsB": 14,
|
|
141
|
+
"ctxMax": 131072,
|
|
142
|
+
"quant": "Q4_K_M",
|
|
143
|
+
"sizeGB": 9.0,
|
|
144
|
+
"modalities": ["text"],
|
|
145
|
+
"tags": ["instruct", "chat"],
|
|
146
|
+
"model_identifier": "deepseek-r1:14b",
|
|
147
|
+
"pulls": 75000000
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "deepseek-r1:8b",
|
|
151
|
+
"family": "deepseek",
|
|
152
|
+
"paramsB": 8,
|
|
153
|
+
"ctxMax": 131072,
|
|
154
|
+
"quant": "Q4_K_M",
|
|
155
|
+
"sizeGB": 5.0,
|
|
156
|
+
"modalities": ["text"],
|
|
157
|
+
"tags": ["instruct", "chat"],
|
|
158
|
+
"model_identifier": "deepseek-r1:8b",
|
|
159
|
+
"pulls": 30000000
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "deepseek-r1:32b",
|
|
163
|
+
"family": "deepseek",
|
|
164
|
+
"paramsB": 32,
|
|
165
|
+
"ctxMax": 131072,
|
|
166
|
+
"quant": "Q4_K_M",
|
|
167
|
+
"sizeGB": 19.0,
|
|
168
|
+
"modalities": ["text"],
|
|
169
|
+
"tags": ["instruct", "chat"],
|
|
170
|
+
"model_identifier": "deepseek-r1:32b",
|
|
171
|
+
"pulls": 20000000
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "deepseek-coder-v2:16b",
|
|
175
|
+
"family": "deepseek",
|
|
176
|
+
"paramsB": 16,
|
|
177
|
+
"ctxMax": 131072,
|
|
178
|
+
"quant": "Q4_K_M",
|
|
179
|
+
"sizeGB": 9.0,
|
|
180
|
+
"modalities": ["text"],
|
|
181
|
+
"tags": ["coder", "instruct"],
|
|
182
|
+
"model_identifier": "deepseek-coder-v2:16b",
|
|
183
|
+
"pulls": 8000000
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "phi4:14b",
|
|
187
|
+
"family": "phi-3",
|
|
188
|
+
"paramsB": 14,
|
|
189
|
+
"ctxMax": 16384,
|
|
190
|
+
"quant": "Q4_K_M",
|
|
191
|
+
"sizeGB": 8.5,
|
|
192
|
+
"modalities": ["text"],
|
|
193
|
+
"tags": ["instruct", "chat"],
|
|
194
|
+
"model_identifier": "phi4:14b",
|
|
195
|
+
"pulls": 10000000
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "gemma2:9b",
|
|
199
|
+
"family": "gemma2",
|
|
200
|
+
"paramsB": 9,
|
|
201
|
+
"ctxMax": 8192,
|
|
202
|
+
"quant": "Q4_K_M",
|
|
203
|
+
"sizeGB": 5.5,
|
|
204
|
+
"modalities": ["text"],
|
|
205
|
+
"tags": ["chat", "instruct"],
|
|
206
|
+
"model_identifier": "gemma2:9b",
|
|
207
|
+
"pulls": 28000000
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "gemma2:2b",
|
|
211
|
+
"family": "gemma2",
|
|
212
|
+
"paramsB": 2,
|
|
213
|
+
"ctxMax": 8192,
|
|
214
|
+
"quant": "Q4_K_M",
|
|
215
|
+
"sizeGB": 1.5,
|
|
216
|
+
"modalities": ["text"],
|
|
217
|
+
"tags": ["chat", "instruct"],
|
|
218
|
+
"model_identifier": "gemma2:2b",
|
|
219
|
+
"pulls": 10000000
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "mistral:7b",
|
|
223
|
+
"family": "mistral",
|
|
224
|
+
"paramsB": 7,
|
|
225
|
+
"ctxMax": 32768,
|
|
226
|
+
"quant": "Q4_K_M",
|
|
227
|
+
"sizeGB": 4.1,
|
|
228
|
+
"modalities": ["text"],
|
|
229
|
+
"tags": ["chat", "instruct"],
|
|
230
|
+
"model_identifier": "mistral:7b",
|
|
231
|
+
"pulls": 40000000
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "mistral-nemo:12b",
|
|
235
|
+
"family": "mistral",
|
|
236
|
+
"paramsB": 12,
|
|
237
|
+
"ctxMax": 131072,
|
|
238
|
+
"quant": "Q4_K_M",
|
|
239
|
+
"sizeGB": 7.0,
|
|
240
|
+
"modalities": ["text"],
|
|
241
|
+
"tags": ["chat", "instruct"],
|
|
242
|
+
"model_identifier": "mistral-nemo:12b",
|
|
243
|
+
"pulls": 12000000
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "codellama:13b",
|
|
247
|
+
"family": "llama",
|
|
248
|
+
"paramsB": 13,
|
|
249
|
+
"ctxMax": 16384,
|
|
250
|
+
"quant": "Q4_K_M",
|
|
251
|
+
"sizeGB": 7.9,
|
|
252
|
+
"modalities": ["text"],
|
|
253
|
+
"tags": ["coder", "instruct"],
|
|
254
|
+
"model_identifier": "codellama:13b",
|
|
255
|
+
"pulls": 15000000
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "codellama:7b",
|
|
259
|
+
"family": "llama",
|
|
260
|
+
"paramsB": 7,
|
|
261
|
+
"ctxMax": 16384,
|
|
262
|
+
"quant": "Q4_K_M",
|
|
263
|
+
"sizeGB": 3.8,
|
|
264
|
+
"modalities": ["text"],
|
|
265
|
+
"tags": ["coder", "instruct"],
|
|
266
|
+
"model_identifier": "codellama:7b",
|
|
267
|
+
"pulls": 20000000
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "starcoder2:15b",
|
|
271
|
+
"family": "starcoder",
|
|
272
|
+
"paramsB": 15,
|
|
273
|
+
"ctxMax": 16384,
|
|
274
|
+
"quant": "Q4_K_M",
|
|
275
|
+
"sizeGB": 9.0,
|
|
276
|
+
"modalities": ["text"],
|
|
277
|
+
"tags": ["coder"],
|
|
278
|
+
"model_identifier": "starcoder2:15b",
|
|
279
|
+
"pulls": 3000000
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "qwen2.5vl:7b",
|
|
283
|
+
"family": "qwen2.5",
|
|
284
|
+
"paramsB": 7,
|
|
285
|
+
"ctxMax": 125000,
|
|
286
|
+
"quant": "Q4_K_M",
|
|
287
|
+
"sizeGB": 6.0,
|
|
288
|
+
"modalities": ["text", "vision"],
|
|
289
|
+
"tags": ["multimodal", "vision", "instruct"],
|
|
290
|
+
"model_identifier": "qwen2.5vl:7b",
|
|
291
|
+
"pulls": 5000000
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "qwen2.5vl:3b",
|
|
295
|
+
"family": "qwen2.5",
|
|
296
|
+
"paramsB": 3,
|
|
297
|
+
"ctxMax": 125000,
|
|
298
|
+
"quant": "Q4_K_M",
|
|
299
|
+
"sizeGB": 2.5,
|
|
300
|
+
"modalities": ["text", "vision"],
|
|
301
|
+
"tags": ["multimodal", "vision", "instruct"],
|
|
302
|
+
"model_identifier": "qwen2.5vl:3b",
|
|
303
|
+
"pulls": 3000000
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"name": "llama3.2-vision:11b",
|
|
307
|
+
"family": "llama3.2",
|
|
308
|
+
"paramsB": 11,
|
|
309
|
+
"ctxMax": 131072,
|
|
310
|
+
"quant": "Q4_K_M",
|
|
311
|
+
"sizeGB": 7.0,
|
|
312
|
+
"modalities": ["text", "vision"],
|
|
313
|
+
"tags": ["multimodal", "vision", "instruct"],
|
|
314
|
+
"model_identifier": "llama3.2-vision:11b",
|
|
315
|
+
"pulls": 10000000
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"name": "llava:13b",
|
|
319
|
+
"family": "llava",
|
|
320
|
+
"paramsB": 13,
|
|
321
|
+
"ctxMax": 4096,
|
|
322
|
+
"quant": "Q4_K_M",
|
|
323
|
+
"sizeGB": 7.9,
|
|
324
|
+
"modalities": ["text", "vision"],
|
|
325
|
+
"tags": ["multimodal", "vision"],
|
|
326
|
+
"model_identifier": "llava:13b",
|
|
327
|
+
"pulls": 8000000
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "llava:7b",
|
|
331
|
+
"family": "llava",
|
|
332
|
+
"paramsB": 7,
|
|
333
|
+
"ctxMax": 4096,
|
|
334
|
+
"quant": "Q4_K_M",
|
|
335
|
+
"sizeGB": 4.7,
|
|
336
|
+
"modalities": ["text", "vision"],
|
|
337
|
+
"tags": ["multimodal", "vision"],
|
|
338
|
+
"model_identifier": "llava:7b",
|
|
339
|
+
"pulls": 15000000
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"name": "minicpm-v:8b",
|
|
343
|
+
"family": "minicpm",
|
|
344
|
+
"paramsB": 8,
|
|
345
|
+
"ctxMax": 8192,
|
|
346
|
+
"quant": "Q4_K_M",
|
|
347
|
+
"sizeGB": 5.0,
|
|
348
|
+
"modalities": ["text", "vision"],
|
|
349
|
+
"tags": ["multimodal", "vision"],
|
|
350
|
+
"model_identifier": "minicpm-v:8b",
|
|
351
|
+
"pulls": 2000000
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "nomic-embed-text",
|
|
355
|
+
"family": "nomic",
|
|
356
|
+
"paramsB": 0.137,
|
|
357
|
+
"ctxMax": 8192,
|
|
358
|
+
"quant": "Q8_0",
|
|
359
|
+
"sizeGB": 0.274,
|
|
360
|
+
"modalities": ["text"],
|
|
361
|
+
"tags": ["embedding"],
|
|
362
|
+
"model_identifier": "nomic-embed-text",
|
|
363
|
+
"pulls": 20000000
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "mxbai-embed-large",
|
|
367
|
+
"family": "mxbai",
|
|
368
|
+
"paramsB": 0.335,
|
|
369
|
+
"ctxMax": 512,
|
|
370
|
+
"quant": "Q8_0",
|
|
371
|
+
"sizeGB": 0.669,
|
|
372
|
+
"modalities": ["text"],
|
|
373
|
+
"tags": ["embedding"],
|
|
374
|
+
"model_identifier": "mxbai-embed-large",
|
|
375
|
+
"pulls": 10000000
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"name": "bge-m3",
|
|
379
|
+
"family": "bge",
|
|
380
|
+
"paramsB": 0.568,
|
|
381
|
+
"ctxMax": 8192,
|
|
382
|
+
"quant": "Q8_0",
|
|
383
|
+
"sizeGB": 1.1,
|
|
384
|
+
"modalities": ["text"],
|
|
385
|
+
"tags": ["embedding"],
|
|
386
|
+
"model_identifier": "bge-m3",
|
|
387
|
+
"pulls": 5000000
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "all-minilm",
|
|
391
|
+
"family": "minilm",
|
|
392
|
+
"paramsB": 0.023,
|
|
393
|
+
"ctxMax": 512,
|
|
394
|
+
"quant": "Q8_0",
|
|
395
|
+
"sizeGB": 0.046,
|
|
396
|
+
"modalities": ["text"],
|
|
397
|
+
"tags": ["embedding"],
|
|
398
|
+
"model_identifier": "all-minilm",
|
|
399
|
+
"pulls": 3000000
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"name": "granite3:8b",
|
|
403
|
+
"family": "granite",
|
|
404
|
+
"paramsB": 8,
|
|
405
|
+
"ctxMax": 131072,
|
|
406
|
+
"quant": "Q4_K_M",
|
|
407
|
+
"sizeGB": 5.0,
|
|
408
|
+
"modalities": ["text"],
|
|
409
|
+
"tags": ["chat", "instruct"],
|
|
410
|
+
"model_identifier": "granite3:8b",
|
|
411
|
+
"pulls": 2000000
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"name": "solar:10.7b",
|
|
415
|
+
"family": "solar",
|
|
416
|
+
"paramsB": 10.7,
|
|
417
|
+
"ctxMax": 4096,
|
|
418
|
+
"quant": "Q4_K_M",
|
|
419
|
+
"sizeGB": 6.5,
|
|
420
|
+
"modalities": ["text"],
|
|
421
|
+
"tags": ["chat", "instruct"],
|
|
422
|
+
"model_identifier": "solar:10.7b",
|
|
423
|
+
"pulls": 3000000
|
|
424
|
+
}
|
|
425
|
+
]
|
|
426
|
+
}
|