llm-orchestrator 1.0.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/.claude-plugin/marketplace.json +14 -0
- package/.claude-plugin/plugin.json +19 -0
- package/COMPATIBILITY.md +27 -0
- package/IMPLEMENTATION.md +26 -0
- package/LICENSE +31 -0
- package/NOTICE +17 -0
- package/README.md +291 -0
- package/SKILL.md +125 -0
- package/adapters/agents.mjs +46 -0
- package/adapters/claude/index.mjs +9 -0
- package/adapters/codex/index.mjs +15 -0
- package/adapters/commands.mjs +117 -0
- package/adapters/kilo/index.mjs +5 -0
- package/adapters/opencode/index.mjs +5 -0
- package/bin/attribution-check.mjs +136 -0
- package/bin/cli-options.mjs +90 -0
- package/bin/discover-models.mjs +271 -0
- package/bin/doctor.mjs +191 -0
- package/bin/install.mjs +48 -0
- package/bin/llm-orchestrator.mjs +103 -0
- package/bin/model-thinking-report.mjs +165 -0
- package/bin/render.mjs +22 -0
- package/bin/route.mjs +139 -0
- package/bin/uninstall.mjs +15 -0
- package/lib/adapter-renderer.mjs +114 -0
- package/lib/capability-resolver.mjs +343 -0
- package/lib/dispatch-contract.mjs +583 -0
- package/lib/first-run.mjs +299 -0
- package/lib/harness.mjs +6 -0
- package/lib/installation.mjs +550 -0
- package/lib/project-discovery.mjs +434 -0
- package/lib/router.mjs +660 -0
- package/lib/tool-discovery.mjs +162 -0
- package/models/example-model-inventory.json +82 -0
- package/models/model-thinking-data.json +580 -0
- package/models/model-thinking-matrix.md +157 -0
- package/models/top-models.json +1299 -0
- package/package.json +65 -0
- package/policies/capabilities.md +144 -0
- package/policies/cleanup.md +51 -0
- package/policies/dispatch.md +284 -0
- package/policies/execution.md +116 -0
- package/policies/questions.md +75 -0
- package/policies/routing.md +677 -0
- package/policies/state.md +85 -0
- package/policies/verification.md +72 -0
- package/protocol.md +162 -0
- package/registries/agent-roles.json +1 -0
- package/registries/capabilities.json +58 -0
- package/registries/core-profile.json +183 -0
- package/registries/preferred-tools.json +595 -0
- package/registries/routing-matrix.json +394 -0
- package/registries/task-mappings.json +259 -0
- package/schemas/agent-roles.schema.json +1 -0
- package/schemas/capability-contract.schema.json +209 -0
- package/schemas/installation-manifest.schema.json +57 -0
- package/schemas/project-profile.schema.json +70 -0
- package/schemas/routing-matrix.schema.json +237 -0
- package/schemas/tool-inventory.schema.json +127 -0
- package/schemas/top-models.schema.json +235 -0
- package/skills/orchestrate-core/SKILL.md +18 -0
- package/workflows/bug-fix.md +59 -0
- package/workflows/config.md +57 -0
- package/workflows/deploy.md +57 -0
- package/workflows/feature.md +61 -0
- package/workflows/incident.md +61 -0
- package/workflows/investigation.md +62 -0
- package/workflows/refactor.md +53 -0
- package/workflows/research.md +61 -0
- package/workflows/review.md +58 -0
|
@@ -0,0 +1,580 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_attribution": "llm-orchestrator · created by Bogdan-Gabriel Torcescu · https://www.linkedin.com/in/bogdantorcescu/ · keep this credit when copying or deriving",
|
|
3
|
+
"schema_version": 1,
|
|
4
|
+
"observed_at": "2026-09-22",
|
|
5
|
+
"benchmark": {
|
|
6
|
+
"name": "Artificial Analysis Intelligence Index",
|
|
7
|
+
"version": "v4.3.2",
|
|
8
|
+
"leaderboard_url": "https://artificialanalysis.ai/leaderboards/models",
|
|
9
|
+
"cost_unit": "USD weighted benchmark task cost"
|
|
10
|
+
},
|
|
11
|
+
"index_baselines": {
|
|
12
|
+
"benchmark_cost_usd": 0.5,
|
|
13
|
+
"token_basket": {
|
|
14
|
+
"input_mtok": 1,
|
|
15
|
+
"output_mtok": 0.25,
|
|
16
|
+
"baseline_usd": 9,
|
|
17
|
+
"description": "Synthetic 1M uncached input plus 250K output token basket; not a measured benchmark task."
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"models": [
|
|
21
|
+
{
|
|
22
|
+
"key": "gpt-5-6-luna",
|
|
23
|
+
"display_name": "GPT-5.6 Luna",
|
|
24
|
+
"provider": "OpenAI",
|
|
25
|
+
"api_id": "gpt-5.6-luna",
|
|
26
|
+
"input_usd_per_mtok": 0.2,
|
|
27
|
+
"output_usd_per_mtok": 1.2,
|
|
28
|
+
"source": "https://artificialanalysis.ai/models/gpt-5-6-luna",
|
|
29
|
+
"measurements": [
|
|
30
|
+
[
|
|
31
|
+
"low",
|
|
32
|
+
21,
|
|
33
|
+
0.01
|
|
34
|
+
],
|
|
35
|
+
[
|
|
36
|
+
"medium",
|
|
37
|
+
25,
|
|
38
|
+
0.02
|
|
39
|
+
],
|
|
40
|
+
[
|
|
41
|
+
"high",
|
|
42
|
+
32,
|
|
43
|
+
0.04
|
|
44
|
+
],
|
|
45
|
+
[
|
|
46
|
+
"xhigh",
|
|
47
|
+
35,
|
|
48
|
+
0.09
|
|
49
|
+
],
|
|
50
|
+
[
|
|
51
|
+
"max",
|
|
52
|
+
37,
|
|
53
|
+
0.18
|
|
54
|
+
]
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"key": "gpt-5-6-terra",
|
|
59
|
+
"display_name": "GPT-5.6 Terra",
|
|
60
|
+
"provider": "OpenAI",
|
|
61
|
+
"api_id": "gpt-5.6-terra",
|
|
62
|
+
"input_usd_per_mtok": 2,
|
|
63
|
+
"output_usd_per_mtok": 12,
|
|
64
|
+
"source": "https://artificialanalysis.ai/models/gpt-5-6-terra",
|
|
65
|
+
"measurements": [
|
|
66
|
+
[
|
|
67
|
+
"low",
|
|
68
|
+
27,
|
|
69
|
+
0.14
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"medium",
|
|
73
|
+
30,
|
|
74
|
+
0.18
|
|
75
|
+
],
|
|
76
|
+
[
|
|
77
|
+
"high",
|
|
78
|
+
34,
|
|
79
|
+
0.34
|
|
80
|
+
],
|
|
81
|
+
[
|
|
82
|
+
"xhigh",
|
|
83
|
+
38,
|
|
84
|
+
0.63
|
|
85
|
+
],
|
|
86
|
+
[
|
|
87
|
+
"max",
|
|
88
|
+
42,
|
|
89
|
+
1.4
|
|
90
|
+
]
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"key": "gpt-5-6-sol",
|
|
95
|
+
"display_name": "GPT-5.6 Sol",
|
|
96
|
+
"provider": "OpenAI",
|
|
97
|
+
"api_id": "gpt-5.6-sol",
|
|
98
|
+
"input_usd_per_mtok": 4,
|
|
99
|
+
"output_usd_per_mtok": 20,
|
|
100
|
+
"source": "https://artificialanalysis.ai/models/gpt-5-6-sol",
|
|
101
|
+
"measurements": [
|
|
102
|
+
[
|
|
103
|
+
"low",
|
|
104
|
+
33,
|
|
105
|
+
0.26
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"medium",
|
|
109
|
+
39,
|
|
110
|
+
0.5
|
|
111
|
+
],
|
|
112
|
+
[
|
|
113
|
+
"high",
|
|
114
|
+
42,
|
|
115
|
+
0.81
|
|
116
|
+
],
|
|
117
|
+
[
|
|
118
|
+
"xhigh",
|
|
119
|
+
44,
|
|
120
|
+
1.18
|
|
121
|
+
],
|
|
122
|
+
[
|
|
123
|
+
"max",
|
|
124
|
+
47,
|
|
125
|
+
1.99
|
|
126
|
+
]
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"key": "gpt-6-astra",
|
|
131
|
+
"display_name": "GPT-6 Astra",
|
|
132
|
+
"provider": "OpenAI",
|
|
133
|
+
"api_id": "gpt-6-astra",
|
|
134
|
+
"input_usd_per_mtok": 10,
|
|
135
|
+
"output_usd_per_mtok": 50,
|
|
136
|
+
"source": "https://artificialanalysis.ai/models/gpt-6-astra",
|
|
137
|
+
"measurements": [
|
|
138
|
+
[
|
|
139
|
+
"low",
|
|
140
|
+
46,
|
|
141
|
+
0.82
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"medium",
|
|
145
|
+
50,
|
|
146
|
+
1.54
|
|
147
|
+
],
|
|
148
|
+
[
|
|
149
|
+
"high",
|
|
150
|
+
51,
|
|
151
|
+
1.73
|
|
152
|
+
],
|
|
153
|
+
[
|
|
154
|
+
"xhigh",
|
|
155
|
+
52,
|
|
156
|
+
2.31
|
|
157
|
+
],
|
|
158
|
+
[
|
|
159
|
+
"max",
|
|
160
|
+
53,
|
|
161
|
+
3.26
|
|
162
|
+
]
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"key": "claude-sonnet-5",
|
|
167
|
+
"display_name": "Claude Sonnet 5",
|
|
168
|
+
"provider": "Anthropic",
|
|
169
|
+
"api_id": "claude-sonnet-5",
|
|
170
|
+
"input_usd_per_mtok": 2,
|
|
171
|
+
"output_usd_per_mtok": 10,
|
|
172
|
+
"source": "https://artificialanalysis.ai/models/claude-sonnet-5",
|
|
173
|
+
"measurements": [
|
|
174
|
+
[
|
|
175
|
+
"low",
|
|
176
|
+
24,
|
|
177
|
+
0.51
|
|
178
|
+
],
|
|
179
|
+
[
|
|
180
|
+
"medium",
|
|
181
|
+
28,
|
|
182
|
+
1
|
|
183
|
+
],
|
|
184
|
+
[
|
|
185
|
+
"high",
|
|
186
|
+
32,
|
|
187
|
+
1.79
|
|
188
|
+
],
|
|
189
|
+
[
|
|
190
|
+
"xhigh",
|
|
191
|
+
34,
|
|
192
|
+
2.87
|
|
193
|
+
],
|
|
194
|
+
[
|
|
195
|
+
"max",
|
|
196
|
+
38,
|
|
197
|
+
5.09
|
|
198
|
+
]
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"key": "claude-opus-5",
|
|
203
|
+
"display_name": "Claude Opus 5",
|
|
204
|
+
"provider": "Anthropic",
|
|
205
|
+
"api_id": "claude-opus-5",
|
|
206
|
+
"input_usd_per_mtok": 5,
|
|
207
|
+
"output_usd_per_mtok": 25,
|
|
208
|
+
"source": "https://artificialanalysis.ai/models/claude-opus-5",
|
|
209
|
+
"measurements": [
|
|
210
|
+
[
|
|
211
|
+
"low",
|
|
212
|
+
39,
|
|
213
|
+
1.1
|
|
214
|
+
],
|
|
215
|
+
[
|
|
216
|
+
"medium",
|
|
217
|
+
45,
|
|
218
|
+
2.19
|
|
219
|
+
],
|
|
220
|
+
[
|
|
221
|
+
"high",
|
|
222
|
+
48,
|
|
223
|
+
3.61
|
|
224
|
+
],
|
|
225
|
+
[
|
|
226
|
+
"xhigh",
|
|
227
|
+
50,
|
|
228
|
+
4.88
|
|
229
|
+
],
|
|
230
|
+
[
|
|
231
|
+
"max",
|
|
232
|
+
51,
|
|
233
|
+
5.86
|
|
234
|
+
]
|
|
235
|
+
]
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"key": "claude-fable-5-1",
|
|
239
|
+
"display_name": "Claude Fable 5.1",
|
|
240
|
+
"provider": "Anthropic",
|
|
241
|
+
"api_id": "claude-fable-5-1",
|
|
242
|
+
"input_usd_per_mtok": 10,
|
|
243
|
+
"output_usd_per_mtok": 50,
|
|
244
|
+
"source": "https://artificialanalysis.ai/models/claude-fable-5-1",
|
|
245
|
+
"measurement_note": "All displayed scores include the benchmark default fallback and are not standalone scores.",
|
|
246
|
+
"measurements": [
|
|
247
|
+
[
|
|
248
|
+
"low",
|
|
249
|
+
47,
|
|
250
|
+
2.37
|
|
251
|
+
],
|
|
252
|
+
[
|
|
253
|
+
"medium",
|
|
254
|
+
49,
|
|
255
|
+
2.98
|
|
256
|
+
],
|
|
257
|
+
[
|
|
258
|
+
"high",
|
|
259
|
+
51,
|
|
260
|
+
3.91
|
|
261
|
+
],
|
|
262
|
+
[
|
|
263
|
+
"xhigh",
|
|
264
|
+
53,
|
|
265
|
+
5.98
|
|
266
|
+
],
|
|
267
|
+
[
|
|
268
|
+
"max",
|
|
269
|
+
53,
|
|
270
|
+
7.63
|
|
271
|
+
]
|
|
272
|
+
]
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"key": "claude-fable-5",
|
|
276
|
+
"display_name": "Claude Fable 5",
|
|
277
|
+
"provider": "Anthropic",
|
|
278
|
+
"api_id": "claude-fable-5",
|
|
279
|
+
"input_usd_per_mtok": 10,
|
|
280
|
+
"output_usd_per_mtok": 50,
|
|
281
|
+
"source": "https://artificialanalysis.ai/models/claude-fable-5",
|
|
282
|
+
"measurement_note": "AA v4.3.2 max result uses Opus 4.8 default fallback. This legacy catalog model is not in the current leaderboard filter; segregate it from standalone cross-model comparisons.",
|
|
283
|
+
"measurements": [
|
|
284
|
+
[
|
|
285
|
+
"low",
|
|
286
|
+
null,
|
|
287
|
+
null
|
|
288
|
+
],
|
|
289
|
+
[
|
|
290
|
+
"medium",
|
|
291
|
+
null,
|
|
292
|
+
null
|
|
293
|
+
],
|
|
294
|
+
[
|
|
295
|
+
"high",
|
|
296
|
+
null,
|
|
297
|
+
null
|
|
298
|
+
],
|
|
299
|
+
[
|
|
300
|
+
"xhigh",
|
|
301
|
+
null,
|
|
302
|
+
null
|
|
303
|
+
],
|
|
304
|
+
[
|
|
305
|
+
"max",
|
|
306
|
+
50,
|
|
307
|
+
8.75
|
|
308
|
+
]
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"key": "claude-4-5-haiku",
|
|
313
|
+
"display_name": "Claude Haiku 4.5",
|
|
314
|
+
"provider": "Anthropic",
|
|
315
|
+
"api_id": "claude-haiku-4-5",
|
|
316
|
+
"input_usd_per_mtok": 1,
|
|
317
|
+
"output_usd_per_mtok": 5,
|
|
318
|
+
"source": "https://artificialanalysis.ai/models/claude-4-5-haiku",
|
|
319
|
+
"measurement_note": "Its API thinking budget is not an effort enum. The disabled score 15 is incomplete and intentionally excluded.",
|
|
320
|
+
"measurements": [
|
|
321
|
+
[
|
|
322
|
+
"disabled",
|
|
323
|
+
null,
|
|
324
|
+
null
|
|
325
|
+
],
|
|
326
|
+
[
|
|
327
|
+
"enabled",
|
|
328
|
+
17,
|
|
329
|
+
0.21
|
|
330
|
+
]
|
|
331
|
+
]
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"key": "muse-spark-1-3",
|
|
335
|
+
"display_name": "Muse Spark 1.3",
|
|
336
|
+
"provider": "Muse",
|
|
337
|
+
"api_id": null,
|
|
338
|
+
"input_usd_per_mtok": 1.25,
|
|
339
|
+
"output_usd_per_mtok": 4.25,
|
|
340
|
+
"source": "https://artificialanalysis.ai/models/muse-spark-1-3",
|
|
341
|
+
"measurements": [
|
|
342
|
+
[
|
|
343
|
+
"xhigh",
|
|
344
|
+
45,
|
|
345
|
+
1.37
|
|
346
|
+
],
|
|
347
|
+
[
|
|
348
|
+
"max",
|
|
349
|
+
48,
|
|
350
|
+
1.6
|
|
351
|
+
]
|
|
352
|
+
]
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"key": "grok-4-7",
|
|
356
|
+
"display_name": "Grok 4.7",
|
|
357
|
+
"provider": "xAI",
|
|
358
|
+
"api_id": "grok-4.7",
|
|
359
|
+
"input_usd_per_mtok": 2,
|
|
360
|
+
"output_usd_per_mtok": 6,
|
|
361
|
+
"source": "https://artificialanalysis.ai/models/grok-4-7",
|
|
362
|
+
"price_note": "$2/$6 below 200K input; $4/$12 above 200K.",
|
|
363
|
+
"api_source": "https://docs.x.ai/developers/release-notes",
|
|
364
|
+
"measurements": [
|
|
365
|
+
[
|
|
366
|
+
"low",
|
|
367
|
+
null,
|
|
368
|
+
null
|
|
369
|
+
],
|
|
370
|
+
[
|
|
371
|
+
"medium",
|
|
372
|
+
null,
|
|
373
|
+
null
|
|
374
|
+
],
|
|
375
|
+
[
|
|
376
|
+
"high",
|
|
377
|
+
46,
|
|
378
|
+
2.73
|
|
379
|
+
],
|
|
380
|
+
[
|
|
381
|
+
"xhigh",
|
|
382
|
+
46,
|
|
383
|
+
3.74
|
|
384
|
+
]
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"key": "grok-4-6",
|
|
389
|
+
"display_name": "Grok 4.6",
|
|
390
|
+
"provider": "xAI",
|
|
391
|
+
"api_id": null,
|
|
392
|
+
"input_usd_per_mtok": 2,
|
|
393
|
+
"output_usd_per_mtok": 6,
|
|
394
|
+
"source": "https://artificialanalysis.ai/models/grok-4-6",
|
|
395
|
+
"measurements": [
|
|
396
|
+
[
|
|
397
|
+
"low",
|
|
398
|
+
35,
|
|
399
|
+
0.48
|
|
400
|
+
],
|
|
401
|
+
[
|
|
402
|
+
"medium",
|
|
403
|
+
43,
|
|
404
|
+
1.5
|
|
405
|
+
],
|
|
406
|
+
[
|
|
407
|
+
"high",
|
|
408
|
+
44,
|
|
409
|
+
1.86
|
|
410
|
+
],
|
|
411
|
+
[
|
|
412
|
+
"xhigh",
|
|
413
|
+
44,
|
|
414
|
+
2.32
|
|
415
|
+
]
|
|
416
|
+
]
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"key": "mimo-v2-6-pro",
|
|
420
|
+
"display_name": "MiMo V2.6 Pro",
|
|
421
|
+
"provider": "Xiaomi",
|
|
422
|
+
"api_id": "mimo-v2.6-pro",
|
|
423
|
+
"input_usd_per_mtok": 0.435,
|
|
424
|
+
"output_usd_per_mtok": 0.87,
|
|
425
|
+
"source": "https://artificialanalysis.ai/models/mimo-v2-6-pro",
|
|
426
|
+
"price_source": "https://mimo.mi.com/docs/en-US/quick-start/usage-guide/text-generation/batch-api",
|
|
427
|
+
"api_source": "https://mimo.mi.com/docs/en-US/quick-start/usage-guide/text-generation/batch-api",
|
|
428
|
+
"measurements": [
|
|
429
|
+
[
|
|
430
|
+
"default",
|
|
431
|
+
46,
|
|
432
|
+
0.13
|
|
433
|
+
]
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"key": "qwen3-8-max",
|
|
438
|
+
"display_name": "Qwen3.8 Max",
|
|
439
|
+
"provider": "Alibaba",
|
|
440
|
+
"api_id": null,
|
|
441
|
+
"input_usd_per_mtok": 2,
|
|
442
|
+
"output_usd_per_mtok": 6,
|
|
443
|
+
"source": "https://artificialanalysis.ai/models/qwen3-8-max",
|
|
444
|
+
"measurements": [
|
|
445
|
+
[
|
|
446
|
+
"default",
|
|
447
|
+
45,
|
|
448
|
+
5.41
|
|
449
|
+
]
|
|
450
|
+
]
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"key": "glm-5-3",
|
|
454
|
+
"display_name": "GLM 5.3",
|
|
455
|
+
"provider": "Z.ai",
|
|
456
|
+
"api_id": null,
|
|
457
|
+
"input_usd_per_mtok": 1.4,
|
|
458
|
+
"output_usd_per_mtok": 4.4,
|
|
459
|
+
"source": "https://artificialanalysis.ai/models/glm-5-3",
|
|
460
|
+
"measurements": [
|
|
461
|
+
[
|
|
462
|
+
"max",
|
|
463
|
+
45,
|
|
464
|
+
2.01
|
|
465
|
+
]
|
|
466
|
+
]
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"key": "glm-5-3-flash",
|
|
470
|
+
"display_name": "GLM 5.3 Flash",
|
|
471
|
+
"provider": "Z.ai",
|
|
472
|
+
"api_id": null,
|
|
473
|
+
"input_usd_per_mtok": 0.15,
|
|
474
|
+
"output_usd_per_mtok": 0.5,
|
|
475
|
+
"source": "https://artificialanalysis.ai/models/glm-5-3-flash",
|
|
476
|
+
"measurements": [
|
|
477
|
+
[
|
|
478
|
+
"default",
|
|
479
|
+
42,
|
|
480
|
+
0.25
|
|
481
|
+
]
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"key": "step-5",
|
|
486
|
+
"display_name": "Step 5",
|
|
487
|
+
"provider": "StepFun",
|
|
488
|
+
"api_id": null,
|
|
489
|
+
"input_usd_per_mtok": 1,
|
|
490
|
+
"output_usd_per_mtok": 2.7,
|
|
491
|
+
"source": "https://artificialanalysis.ai/models/step-5",
|
|
492
|
+
"measurements": [
|
|
493
|
+
[
|
|
494
|
+
"default",
|
|
495
|
+
44,
|
|
496
|
+
0.72
|
|
497
|
+
]
|
|
498
|
+
]
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"key": "kimi-k3",
|
|
502
|
+
"display_name": "Kimi K3",
|
|
503
|
+
"provider": "Moonshot AI",
|
|
504
|
+
"api_id": null,
|
|
505
|
+
"input_usd_per_mtok": 3,
|
|
506
|
+
"output_usd_per_mtok": 15,
|
|
507
|
+
"source": "https://artificialanalysis.ai/models/kimi-k3",
|
|
508
|
+
"measurements": [
|
|
509
|
+
[
|
|
510
|
+
"low",
|
|
511
|
+
null,
|
|
512
|
+
null
|
|
513
|
+
],
|
|
514
|
+
[
|
|
515
|
+
"max",
|
|
516
|
+
44,
|
|
517
|
+
2
|
|
518
|
+
]
|
|
519
|
+
]
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"key": "gemini-3-8-flash",
|
|
523
|
+
"display_name": "Gemini 3.8 Flash",
|
|
524
|
+
"provider": "Google",
|
|
525
|
+
"api_id": null,
|
|
526
|
+
"input_usd_per_mtok": 0.75,
|
|
527
|
+
"output_usd_per_mtok": 3.75,
|
|
528
|
+
"source": "https://artificialanalysis.ai/models/gemini-3-8-flash",
|
|
529
|
+
"measurements": [
|
|
530
|
+
[
|
|
531
|
+
"low",
|
|
532
|
+
33,
|
|
533
|
+
null
|
|
534
|
+
],
|
|
535
|
+
[
|
|
536
|
+
"medium",
|
|
537
|
+
40,
|
|
538
|
+
0.93
|
|
539
|
+
],
|
|
540
|
+
[
|
|
541
|
+
"high",
|
|
542
|
+
41,
|
|
543
|
+
1.24
|
|
544
|
+
]
|
|
545
|
+
]
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"key": "deepseek-v4-1-flash",
|
|
549
|
+
"display_name": "DeepSeek V4.1 Flash",
|
|
550
|
+
"provider": "DeepSeek",
|
|
551
|
+
"api_id": null,
|
|
552
|
+
"input_usd_per_mtok": 0.3,
|
|
553
|
+
"output_usd_per_mtok": 1.2,
|
|
554
|
+
"source": "https://artificialanalysis.ai/models/deepseek-v4-1-flash",
|
|
555
|
+
"measurements": [
|
|
556
|
+
[
|
|
557
|
+
"max",
|
|
558
|
+
39,
|
|
559
|
+
0.27
|
|
560
|
+
]
|
|
561
|
+
]
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"key": "minimax-m3",
|
|
565
|
+
"display_name": "MiniMax M3",
|
|
566
|
+
"provider": "MiniMax",
|
|
567
|
+
"api_id": null,
|
|
568
|
+
"input_usd_per_mtok": 0.3,
|
|
569
|
+
"output_usd_per_mtok": 1.2,
|
|
570
|
+
"source": "https://artificialanalysis.ai/models/minimax-m3",
|
|
571
|
+
"measurements": [
|
|
572
|
+
[
|
|
573
|
+
"default",
|
|
574
|
+
29,
|
|
575
|
+
0.51
|
|
576
|
+
]
|
|
577
|
+
]
|
|
578
|
+
}
|
|
579
|
+
]
|
|
580
|
+
}
|