Spaces:
Running
Running
Upload from GitHub Actions: Merge pull request #31 from datenlabor-bmz/ci-fail-red-on-dry-balance
Browse files- .github/workflows/nightly-evals.yml +16 -8
- results/model_health.json +174 -174
.github/workflows/nightly-evals.yml
CHANGED
|
@@ -11,11 +11,12 @@ jobs:
|
|
| 11 |
# checking if this is working in case eval runs take longer than 6h github actions allowance
|
| 12 |
timeout-minutes: 1440 # 24 hours timeout
|
| 13 |
env:
|
| 14 |
-
# Minimum balance (USD) required to start an eval run. Below this,
|
| 15 |
-
#
|
| 16 |
-
#
|
| 17 |
-
#
|
| 18 |
-
#
|
|
|
|
| 19 |
MIN_OPENROUTER_BALANCE_USD: '1.0'
|
| 20 |
steps:
|
| 21 |
- uses: actions/checkout@v3
|
|
@@ -28,12 +29,14 @@ jobs:
|
|
| 28 |
set -e
|
| 29 |
echo "Checking OpenRouter balance..."
|
| 30 |
# Try per-key remaining first (covers per-key caps).
|
| 31 |
-
auth_resp=$(curl -sS -
|
|
|
|
| 32 |
https://openrouter.ai/api/v1/auth/key 2>/dev/null || echo '{}')
|
| 33 |
remaining=$(echo "$auth_resp" | jq -r '.data.limit_remaining // empty' 2>/dev/null || echo '')
|
| 34 |
if [ -z "$remaining" ] || [ "$remaining" = "null" ]; then
|
| 35 |
# No per-key cap configured: fall back to account-level balance.
|
| 36 |
-
credits_resp=$(curl -sS -
|
|
|
|
| 37 |
https://openrouter.ai/api/v1/credits 2>/dev/null || echo '{}')
|
| 38 |
remaining=$(echo "$credits_resp" | \
|
| 39 |
jq -r '.data | ((.total_credits // 0) - (.total_usage // 0))' 2>/dev/null || echo '')
|
|
@@ -49,7 +52,12 @@ jobs:
|
|
| 49 |
echo "::notice::OpenRouter balance OK: \$$remaining remaining (threshold \$$threshold). Proceeding."
|
| 50 |
else
|
| 51 |
echo "proceed=false" >> "$GITHUB_OUTPUT"
|
| 52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
fi
|
| 54 |
|
| 55 |
- name: Set up Python
|
|
|
|
| 11 |
# checking if this is working in case eval runs take longer than 6h github actions allowance
|
| 12 |
timeout-minutes: 1440 # 24 hours timeout
|
| 13 |
env:
|
| 14 |
+
# Minimum balance (USD) required to start an eval run. Below this, the
|
| 15 |
+
# preflight fails the run (red) without spending anything, so a dry
|
| 16 |
+
# balance shows up in the Actions overview and triggers a failure
|
| 17 |
+
# notification instead of weeks of green no-op runs. The FatalAPIError
|
| 18 |
+
# guard in complete() handles running out mid-run; this is the "don't
|
| 19 |
+
# even start" gate. Bump if you want a wider safety margin.
|
| 20 |
MIN_OPENROUTER_BALANCE_USD: '1.0'
|
| 21 |
steps:
|
| 22 |
- uses: actions/checkout@v3
|
|
|
|
| 29 |
set -e
|
| 30 |
echo "Checking OpenRouter balance..."
|
| 31 |
# Try per-key remaining first (covers per-key caps).
|
| 32 |
+
auth_resp=$(curl -sS --retry 3 --retry-all-errors --max-time 15 \
|
| 33 |
+
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
|
| 34 |
https://openrouter.ai/api/v1/auth/key 2>/dev/null || echo '{}')
|
| 35 |
remaining=$(echo "$auth_resp" | jq -r '.data.limit_remaining // empty' 2>/dev/null || echo '')
|
| 36 |
if [ -z "$remaining" ] || [ "$remaining" = "null" ]; then
|
| 37 |
# No per-key cap configured: fall back to account-level balance.
|
| 38 |
+
credits_resp=$(curl -sS --retry 3 --retry-all-errors --max-time 15 \
|
| 39 |
+
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
|
| 40 |
https://openrouter.ai/api/v1/credits 2>/dev/null || echo '{}')
|
| 41 |
remaining=$(echo "$credits_resp" | \
|
| 42 |
jq -r '.data | ((.total_credits // 0) - (.total_usage // 0))' 2>/dev/null || echo '')
|
|
|
|
| 52 |
echo "::notice::OpenRouter balance OK: \$$remaining remaining (threshold \$$threshold). Proceeding."
|
| 53 |
else
|
| 54 |
echo "proceed=false" >> "$GITHUB_OUTPUT"
|
| 55 |
+
if [ "$remaining" = "-1" ]; then
|
| 56 |
+
echo "::error::Could not determine OpenRouter balance (API unreachable or bad response). Not starting the eval. Check https://openrouter.ai/status and the OPENROUTER_API_KEY secret."
|
| 57 |
+
else
|
| 58 |
+
echo "::error::OpenRouter balance below threshold: \$$remaining (need >= \$$threshold). Not starting the eval. Top up at https://openrouter.ai/credits or raise the API key's spend limit (a 'total' key limit never resets)."
|
| 59 |
+
fi
|
| 60 |
+
exit 1
|
| 61 |
fi
|
| 62 |
|
| 63 |
- name: Set up Python
|
results/model_health.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
-
"model":"
|
| 4 |
"total":41,
|
| 5 |
"failed":41,
|
| 6 |
"score_nonfailed":null,
|
| 7 |
"failed_pct":100.0
|
| 8 |
},
|
| 9 |
{
|
| 10 |
-
"model":"
|
| 11 |
"total":41,
|
| 12 |
"failed":41,
|
| 13 |
"score_nonfailed":null,
|
|
@@ -83,20 +83,6 @@
|
|
| 83 |
"score_nonfailed":0.3930247453,
|
| 84 |
"failed_pct":75.0099800399
|
| 85 |
},
|
| 86 |
-
{
|
| 87 |
-
"model":"mistralai\/mistral-medium-3.5-20260430",
|
| 88 |
-
"total":15078,
|
| 89 |
-
"failed":10929,
|
| 90 |
-
"score_nonfailed":0.8846018241,
|
| 91 |
-
"failed_pct":72.4830879427
|
| 92 |
-
},
|
| 93 |
-
{
|
| 94 |
-
"model":"deepcogito\/cogito-v2.1-671b-20251118",
|
| 95 |
-
"total":15080,
|
| 96 |
-
"failed":10563,
|
| 97 |
-
"score_nonfailed":0.5708075958,
|
| 98 |
-
"failed_pct":70.0464190981
|
| 99 |
-
},
|
| 100 |
{
|
| 101 |
"model":"nousresearch\/hermes-4-405b",
|
| 102 |
"total":15030,
|
|
@@ -111,6 +97,13 @@
|
|
| 111 |
"score_nonfailed":0.8472325073,
|
| 112 |
"failed_pct":67.2588157019
|
| 113 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
{
|
| 115 |
"model":"mistralai\/mistral-large-2512",
|
| 116 |
"total":15030,
|
|
@@ -118,6 +111,13 @@
|
|
| 118 |
"score_nonfailed":0.5400137224,
|
| 119 |
"failed_pct":61.8962075848
|
| 120 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
{
|
| 122 |
"model":"upstage\/solar-pro-3",
|
| 123 |
"total":15030,
|
|
@@ -223,13 +223,6 @@
|
|
| 223 |
"score_nonfailed":0.3154198804,
|
| 224 |
"failed_pct":37.0192947438
|
| 225 |
},
|
| 226 |
-
{
|
| 227 |
-
"model":"google\/gemini-3.5-flash-20260519",
|
| 228 |
-
"total":15078,
|
| 229 |
-
"failed":5308,
|
| 230 |
-
"score_nonfailed":0.6580770752,
|
| 231 |
-
"failed_pct":35.2036079056
|
| 232 |
-
},
|
| 233 |
{
|
| 234 |
"model":"z-ai\/glm-4.5-air",
|
| 235 |
"total":15030,
|
|
@@ -245,32 +238,32 @@
|
|
| 245 |
"failed_pct":31.7073170732
|
| 246 |
},
|
| 247 |
{
|
| 248 |
-
"model":"
|
| 249 |
"total":15080,
|
| 250 |
-
"failed":
|
| 251 |
-
"score_nonfailed":0.
|
| 252 |
-
"failed_pct":
|
| 253 |
},
|
| 254 |
{
|
| 255 |
-
"model":"
|
| 256 |
"total":15080,
|
| 257 |
-
"failed":
|
| 258 |
-
"score_nonfailed":0.
|
| 259 |
-
"failed_pct":
|
| 260 |
},
|
| 261 |
{
|
| 262 |
-
"model":"
|
| 263 |
"total":15080,
|
| 264 |
-
"failed":
|
| 265 |
-
"score_nonfailed":0.
|
| 266 |
-
"failed_pct":
|
| 267 |
},
|
| 268 |
{
|
| 269 |
-
"model":"
|
| 270 |
"total":15080,
|
| 271 |
-
"failed":
|
| 272 |
-
"score_nonfailed":0.
|
| 273 |
-
"failed_pct":
|
| 274 |
},
|
| 275 |
{
|
| 276 |
"model":"deepseek\/deepseek-chat-v3.1",
|
|
@@ -282,16 +275,9 @@
|
|
| 282 |
{
|
| 283 |
"model":"amazon\/nova-2-lite-v1",
|
| 284 |
"total":15080,
|
| 285 |
-
"failed":
|
| 286 |
-
"score_nonfailed":0.
|
| 287 |
-
"failed_pct":
|
| 288 |
-
},
|
| 289 |
-
{
|
| 290 |
-
"model":"deepseek\/deepseek-v4-pro",
|
| 291 |
-
"total":15078,
|
| 292 |
-
"failed":2829,
|
| 293 |
-
"score_nonfailed":0.6879473714,
|
| 294 |
-
"failed_pct":18.7624353363
|
| 295 |
},
|
| 296 |
{
|
| 297 |
"model":"bytedance-seed\/seed-1.6-flash-20250625",
|
|
@@ -307,13 +293,6 @@
|
|
| 307 |
"score_nonfailed":0.4370955661,
|
| 308 |
"failed_pct":18.0412371134
|
| 309 |
},
|
| 310 |
-
{
|
| 311 |
-
"model":"ibm-granite\/granite-4.0-h-micro",
|
| 312 |
-
"total":15080,
|
| 313 |
-
"failed":2667,
|
| 314 |
-
"score_nonfailed":0.3411225636,
|
| 315 |
-
"failed_pct":17.6856763926
|
| 316 |
-
},
|
| 317 |
{
|
| 318 |
"model":"deepseek\/deepseek-r1-0528",
|
| 319 |
"total":41,
|
|
@@ -338,16 +317,30 @@
|
|
| 338 |
{
|
| 339 |
"model":"microsoft\/phi-4-mini-instruct",
|
| 340 |
"total":15080,
|
| 341 |
-
"failed":
|
| 342 |
-
"score_nonfailed":0.
|
| 343 |
-
"failed_pct":
|
| 344 |
},
|
| 345 |
{
|
| 346 |
"model":"google\/gemma-4-31b-it-20260402",
|
| 347 |
"total":15080,
|
| 348 |
-
"failed":
|
| 349 |
-
"score_nonfailed":0.
|
| 350 |
-
"failed_pct":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 351 |
},
|
| 352 |
{
|
| 353 |
"model":"qwen\/qwen3-30b-a3b",
|
|
@@ -363,13 +356,6 @@
|
|
| 363 |
"score_nonfailed":0.5317395427,
|
| 364 |
"failed_pct":10.8289124668
|
| 365 |
},
|
| 366 |
-
{
|
| 367 |
-
"model":"liquid\/lfm-2-24b-a2b-20260224",
|
| 368 |
-
"total":15080,
|
| 369 |
-
"failed":1422,
|
| 370 |
-
"score_nonfailed":0.3444065389,
|
| 371 |
-
"failed_pct":9.4297082228
|
| 372 |
-
},
|
| 373 |
{
|
| 374 |
"model":"qwen\/qwen3-30b-a3b-instruct-2507",
|
| 375 |
"total":15030,
|
|
@@ -377,6 +363,13 @@
|
|
| 377 |
"score_nonfailed":0.4588521485,
|
| 378 |
"failed_pct":8.3300066534
|
| 379 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 380 |
{
|
| 381 |
"model":"x-ai\/grok-4.1-fast",
|
| 382 |
"total":15030,
|
|
@@ -398,6 +391,13 @@
|
|
| 398 |
"score_nonfailed":0.7847097861,
|
| 399 |
"failed_pct":7.3170731707
|
| 400 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 401 |
{
|
| 402 |
"model":"openai\/gpt-5",
|
| 403 |
"total":15080,
|
|
@@ -422,9 +422,9 @@
|
|
| 422 |
{
|
| 423 |
"model":"anthropic\/claude-sonnet-4.6",
|
| 424 |
"total":15080,
|
| 425 |
-
"failed":
|
| 426 |
-
"score_nonfailed":0.
|
| 427 |
-
"failed_pct":
|
| 428 |
},
|
| 429 |
{
|
| 430 |
"model":"mistralai\/ministral-8b-2512",
|
|
@@ -457,23 +457,9 @@
|
|
| 457 |
{
|
| 458 |
"model":"mistralai\/ministral-14b-2512",
|
| 459 |
"total":15080,
|
| 460 |
-
"failed":
|
| 461 |
-
"score_nonfailed":0.
|
| 462 |
-
"failed_pct":
|
| 463 |
-
},
|
| 464 |
-
{
|
| 465 |
-
"model":"google\/gemini-3.1-flash-lite",
|
| 466 |
-
"total":15080,
|
| 467 |
-
"failed":445,
|
| 468 |
-
"score_nonfailed":0.6527671954,
|
| 469 |
-
"failed_pct":2.950928382
|
| 470 |
-
},
|
| 471 |
-
{
|
| 472 |
-
"model":"deepseek\/deepseek-v3.2-exp",
|
| 473 |
-
"total":15080,
|
| 474 |
-
"failed":411,
|
| 475 |
-
"score_nonfailed":0.5804285596,
|
| 476 |
-
"failed_pct":2.725464191
|
| 477 |
},
|
| 478 |
{
|
| 479 |
"model":"openai\/gpt-5-nano",
|
|
@@ -483,11 +469,11 @@
|
|
| 483 |
"failed_pct":2.374005305
|
| 484 |
},
|
| 485 |
{
|
| 486 |
-
"model":"
|
| 487 |
"total":15080,
|
| 488 |
-
"failed":
|
| 489 |
-
"score_nonfailed":0.
|
| 490 |
-
"failed_pct":
|
| 491 |
},
|
| 492 |
{
|
| 493 |
"model":"bytedance-seed\/seed-2.0-mini-20260224",
|
|
@@ -503,13 +489,6 @@
|
|
| 503 |
"score_nonfailed":0.5004845457,
|
| 504 |
"failed_pct":1.1737400531
|
| 505 |
},
|
| 506 |
-
{
|
| 507 |
-
"model":"google\/gemini-3.1-pro-preview",
|
| 508 |
-
"total":15080,
|
| 509 |
-
"failed":173,
|
| 510 |
-
"score_nonfailed":0.6900094808,
|
| 511 |
-
"failed_pct":1.1472148541
|
| 512 |
-
},
|
| 513 |
{
|
| 514 |
"model":"openai\/gpt-5.5",
|
| 515 |
"total":15030,
|
|
@@ -517,6 +496,13 @@
|
|
| 517 |
"score_nonfailed":0.6520055238,
|
| 518 |
"failed_pct":1.1177644711
|
| 519 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 520 |
{
|
| 521 |
"model":"qwen\/qwen3.6-plus-04-02",
|
| 522 |
"total":15030,
|
|
@@ -532,11 +518,18 @@
|
|
| 532 |
"failed_pct":0.998003992
|
| 533 |
},
|
| 534 |
{
|
| 535 |
-
"model":"
|
| 536 |
"total":15080,
|
| 537 |
-
"failed":
|
| 538 |
-
"score_nonfailed":0.
|
| 539 |
-
"failed_pct":0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 540 |
},
|
| 541 |
{
|
| 542 |
"model":"openai\/gpt-5.3-chat-20260303",
|
|
@@ -546,18 +539,18 @@
|
|
| 546 |
"failed_pct":0.7252162342
|
| 547 |
},
|
| 548 |
{
|
| 549 |
-
"model":"
|
| 550 |
"total":15080,
|
| 551 |
-
"failed":
|
| 552 |
-
"score_nonfailed":0.
|
| 553 |
-
"failed_pct":0.
|
| 554 |
},
|
| 555 |
{
|
| 556 |
"model":"anthropic\/claude-opus-4.7",
|
| 557 |
"total":15080,
|
| 558 |
-
"failed":
|
| 559 |
-
"score_nonfailed":0.
|
| 560 |
-
"failed_pct":0.
|
| 561 |
},
|
| 562 |
{
|
| 563 |
"model":"x-ai\/grok-4.20",
|
|
@@ -566,6 +559,13 @@
|
|
| 566 |
"score_nonfailed":0.6311292606,
|
| 567 |
"failed_pct":0.5921490353
|
| 568 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 569 |
{
|
| 570 |
"model":"openai\/gpt-5.2",
|
| 571 |
"total":15080,
|
|
@@ -576,9 +576,9 @@
|
|
| 576 |
{
|
| 577 |
"model":"bytedance-seed\/seed-2.0-lite-20260309",
|
| 578 |
"total":15080,
|
| 579 |
-
"failed":
|
| 580 |
-
"score_nonfailed":0.
|
| 581 |
-
"failed_pct":0.
|
| 582 |
},
|
| 583 |
{
|
| 584 |
"model":"openai\/gpt-5-mini",
|
|
@@ -622,6 +622,13 @@
|
|
| 622 |
"score_nonfailed":0.5130942947,
|
| 623 |
"failed_pct":0.0266134398
|
| 624 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 625 |
{
|
| 626 |
"model":"perplexity\/sonar-reasoning-pro",
|
| 627 |
"total":17,
|
|
@@ -629,6 +636,13 @@
|
|
| 629 |
"score_nonfailed":0.7141204358,
|
| 630 |
"failed_pct":0.0
|
| 631 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 632 |
{
|
| 633 |
"model":"baidu\/ernie-4.5-300b-a47b",
|
| 634 |
"total":15030,
|
|
@@ -637,31 +651,31 @@
|
|
| 637 |
"failed_pct":0.0
|
| 638 |
},
|
| 639 |
{
|
| 640 |
-
"model":"
|
| 641 |
-
"total":
|
| 642 |
"failed":0,
|
| 643 |
-
"score_nonfailed":0.
|
| 644 |
"failed_pct":0.0
|
| 645 |
},
|
| 646 |
{
|
| 647 |
-
"model":"
|
| 648 |
-
"total":
|
| 649 |
"failed":0,
|
| 650 |
-
"score_nonfailed":0.
|
| 651 |
"failed_pct":0.0
|
| 652 |
},
|
| 653 |
{
|
| 654 |
-
"model":"
|
| 655 |
-
"total":
|
| 656 |
"failed":0,
|
| 657 |
-
"score_nonfailed":0.
|
| 658 |
"failed_pct":0.0
|
| 659 |
},
|
| 660 |
{
|
| 661 |
-
"model":"
|
| 662 |
-
"total":
|
| 663 |
"failed":0,
|
| 664 |
-
"score_nonfailed":0.
|
| 665 |
"failed_pct":0.0
|
| 666 |
},
|
| 667 |
{
|
|
@@ -671,13 +685,6 @@
|
|
| 671 |
"score_nonfailed":0.5794774559,
|
| 672 |
"failed_pct":0.0
|
| 673 |
},
|
| 674 |
-
{
|
| 675 |
-
"model":"x-ai\/grok-4",
|
| 676 |
-
"total":3475,
|
| 677 |
-
"failed":0,
|
| 678 |
-
"score_nonfailed":0.6712118876,
|
| 679 |
-
"failed_pct":0.0
|
| 680 |
-
},
|
| 681 |
{
|
| 682 |
"model":"anthropic\/claude-3.5-sonnet",
|
| 683 |
"total":14288,
|
|
@@ -686,17 +693,17 @@
|
|
| 686 |
"failed_pct":0.0
|
| 687 |
},
|
| 688 |
{
|
| 689 |
-
"model":"
|
| 690 |
-
"total":
|
| 691 |
"failed":0,
|
| 692 |
-
"score_nonfailed":0.
|
| 693 |
"failed_pct":0.0
|
| 694 |
},
|
| 695 |
{
|
| 696 |
-
"model":"
|
| 697 |
"total":15080,
|
| 698 |
"failed":0,
|
| 699 |
-
"score_nonfailed":0.
|
| 700 |
"failed_pct":0.0
|
| 701 |
},
|
| 702 |
{
|
|
@@ -707,10 +714,10 @@
|
|
| 707 |
"failed_pct":0.0
|
| 708 |
},
|
| 709 |
{
|
| 710 |
-
"model":"
|
| 711 |
-
"total":
|
| 712 |
"failed":0,
|
| 713 |
-
"score_nonfailed":0.
|
| 714 |
"failed_pct":0.0
|
| 715 |
},
|
| 716 |
{
|
|
@@ -721,31 +728,24 @@
|
|
| 721 |
"failed_pct":0.0
|
| 722 |
},
|
| 723 |
{
|
| 724 |
-
"model":"
|
| 725 |
"total":15080,
|
| 726 |
"failed":0,
|
| 727 |
-
"score_nonfailed":0.
|
| 728 |
-
"failed_pct":0.0
|
| 729 |
-
},
|
| 730 |
-
{
|
| 731 |
-
"model":"anthropic\/claude-3.7-sonnet",
|
| 732 |
-
"total":15030,
|
| 733 |
-
"failed":0,
|
| 734 |
-
"score_nonfailed":0.632849603,
|
| 735 |
"failed_pct":0.0
|
| 736 |
},
|
| 737 |
{
|
| 738 |
-
"model":"google\/gemini-2.
|
| 739 |
-
"total":
|
| 740 |
"failed":0,
|
| 741 |
-
"score_nonfailed":0.
|
| 742 |
"failed_pct":0.0
|
| 743 |
},
|
| 744 |
{
|
| 745 |
-
"model":"openai\/gpt-4.1",
|
| 746 |
-
"total":
|
| 747 |
"failed":0,
|
| 748 |
-
"score_nonfailed":0.
|
| 749 |
"failed_pct":0.0
|
| 750 |
},
|
| 751 |
{
|
|
@@ -825,6 +825,13 @@
|
|
| 825 |
"score_nonfailed":0.467426787,
|
| 826 |
"failed_pct":0.0
|
| 827 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 828 |
{
|
| 829 |
"model":"google\/gemma-3-27b-it",
|
| 830 |
"total":15080,
|
|
@@ -853,13 +860,6 @@
|
|
| 853 |
"score_nonfailed":0.5588659385,
|
| 854 |
"failed_pct":0.0
|
| 855 |
},
|
| 856 |
-
{
|
| 857 |
-
"model":"google\/gemini-2.5-flash-image",
|
| 858 |
-
"total":170,
|
| 859 |
-
"failed":0,
|
| 860 |
-
"score_nonfailed":0.713401524,
|
| 861 |
-
"failed_pct":0.0
|
| 862 |
-
},
|
| 863 |
{
|
| 864 |
"model":"mistralai\/mistral-nemo",
|
| 865 |
"total":15080,
|
|
@@ -888,13 +888,6 @@
|
|
| 888 |
"score_nonfailed":0.5523425103,
|
| 889 |
"failed_pct":0.0
|
| 890 |
},
|
| 891 |
-
{
|
| 892 |
-
"model":"cohere\/command-r-plus-08-2024",
|
| 893 |
-
"total":6369,
|
| 894 |
-
"failed":0,
|
| 895 |
-
"score_nonfailed":0.3479812964,
|
| 896 |
-
"failed_pct":0.0
|
| 897 |
-
},
|
| 898 |
{
|
| 899 |
"model":"neversleep\/noromaid-20b",
|
| 900 |
"total":170,
|
|
@@ -909,6 +902,13 @@
|
|
| 909 |
"score_nonfailed":0.6629729711,
|
| 910 |
"failed_pct":0.0
|
| 911 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 912 |
{
|
| 913 |
"model":"cohere\/command-r-08-2024",
|
| 914 |
"total":170,
|
|
@@ -938,17 +938,17 @@
|
|
| 938 |
"failed_pct":0.0
|
| 939 |
},
|
| 940 |
{
|
| 941 |
-
"model":"
|
| 942 |
"total":15080,
|
| 943 |
"failed":0,
|
| 944 |
-
"score_nonfailed":0.
|
| 945 |
"failed_pct":0.0
|
| 946 |
},
|
| 947 |
{
|
| 948 |
-
"model":"
|
| 949 |
"total":170,
|
| 950 |
"failed":0,
|
| 951 |
-
"score_nonfailed":0.
|
| 952 |
"failed_pct":0.0
|
| 953 |
},
|
| 954 |
{
|
|
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
+
"model":"deepseek\/deepseek-v3.2-speciale-20251201",
|
| 4 |
"total":41,
|
| 5 |
"failed":41,
|
| 6 |
"score_nonfailed":null,
|
| 7 |
"failed_pct":100.0
|
| 8 |
},
|
| 9 |
{
|
| 10 |
+
"model":"baidu\/ernie-4.5-21b-a3b",
|
| 11 |
"total":41,
|
| 12 |
"failed":41,
|
| 13 |
"score_nonfailed":null,
|
|
|
|
| 83 |
"score_nonfailed":0.3930247453,
|
| 84 |
"failed_pct":75.0099800399
|
| 85 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
{
|
| 87 |
"model":"nousresearch\/hermes-4-405b",
|
| 88 |
"total":15030,
|
|
|
|
| 97 |
"score_nonfailed":0.8472325073,
|
| 98 |
"failed_pct":67.2588157019
|
| 99 |
},
|
| 100 |
+
{
|
| 101 |
+
"model":"mistralai\/mistral-medium-3.5-20260430",
|
| 102 |
+
"total":15080,
|
| 103 |
+
"failed":10124,
|
| 104 |
+
"score_nonfailed":0.8606925067,
|
| 105 |
+
"failed_pct":67.1352785146
|
| 106 |
+
},
|
| 107 |
{
|
| 108 |
"model":"mistralai\/mistral-large-2512",
|
| 109 |
"total":15030,
|
|
|
|
| 111 |
"score_nonfailed":0.5400137224,
|
| 112 |
"failed_pct":61.8962075848
|
| 113 |
},
|
| 114 |
+
{
|
| 115 |
+
"model":"deepcogito\/cogito-v2.1-671b-20251118",
|
| 116 |
+
"total":15080,
|
| 117 |
+
"failed":9086,
|
| 118 |
+
"score_nonfailed":0.5754169127,
|
| 119 |
+
"failed_pct":60.2519893899
|
| 120 |
+
},
|
| 121 |
{
|
| 122 |
"model":"upstage\/solar-pro-3",
|
| 123 |
"total":15030,
|
|
|
|
| 223 |
"score_nonfailed":0.3154198804,
|
| 224 |
"failed_pct":37.0192947438
|
| 225 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 226 |
{
|
| 227 |
"model":"z-ai\/glm-4.5-air",
|
| 228 |
"total":15030,
|
|
|
|
| 238 |
"failed_pct":31.7073170732
|
| 239 |
},
|
| 240 |
{
|
| 241 |
+
"model":"arcee-ai\/trinity-mini-20251201",
|
| 242 |
"total":15080,
|
| 243 |
+
"failed":3923,
|
| 244 |
+
"score_nonfailed":0.3700186904,
|
| 245 |
+
"failed_pct":26.0145888594
|
| 246 |
},
|
| 247 |
{
|
| 248 |
+
"model":"nousresearch\/hermes-4-70b",
|
| 249 |
"total":15080,
|
| 250 |
+
"failed":3832,
|
| 251 |
+
"score_nonfailed":0.2473206013,
|
| 252 |
+
"failed_pct":25.4111405836
|
| 253 |
},
|
| 254 |
{
|
| 255 |
+
"model":"ai21\/jamba-large-1.7",
|
| 256 |
"total":15080,
|
| 257 |
+
"failed":3529,
|
| 258 |
+
"score_nonfailed":0.4794827086,
|
| 259 |
+
"failed_pct":23.4018567639
|
| 260 |
},
|
| 261 |
{
|
| 262 |
+
"model":"deepseek\/deepseek-v3.1-terminus",
|
| 263 |
"total":15080,
|
| 264 |
+
"failed":3390,
|
| 265 |
+
"score_nonfailed":0.6024125473,
|
| 266 |
+
"failed_pct":22.4801061008
|
| 267 |
},
|
| 268 |
{
|
| 269 |
"model":"deepseek\/deepseek-chat-v3.1",
|
|
|
|
| 275 |
{
|
| 276 |
"model":"amazon\/nova-2-lite-v1",
|
| 277 |
"total":15080,
|
| 278 |
+
"failed":2871,
|
| 279 |
+
"score_nonfailed":0.528535896,
|
| 280 |
+
"failed_pct":19.0384615385
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
},
|
| 282 |
{
|
| 283 |
"model":"bytedance-seed\/seed-1.6-flash-20250625",
|
|
|
|
| 293 |
"score_nonfailed":0.4370955661,
|
| 294 |
"failed_pct":18.0412371134
|
| 295 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 296 |
{
|
| 297 |
"model":"deepseek\/deepseek-r1-0528",
|
| 298 |
"total":41,
|
|
|
|
| 317 |
{
|
| 318 |
"model":"microsoft\/phi-4-mini-instruct",
|
| 319 |
"total":15080,
|
| 320 |
+
"failed":2153,
|
| 321 |
+
"score_nonfailed":0.262022539,
|
| 322 |
+
"failed_pct":14.2771883289
|
| 323 |
},
|
| 324 |
{
|
| 325 |
"model":"google\/gemma-4-31b-it-20260402",
|
| 326 |
"total":15080,
|
| 327 |
+
"failed":1943,
|
| 328 |
+
"score_nonfailed":0.6020256837,
|
| 329 |
+
"failed_pct":12.8846153846
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"model":"google\/gemini-3.5-flash-20260519",
|
| 333 |
+
"total":15080,
|
| 334 |
+
"failed":1915,
|
| 335 |
+
"score_nonfailed":0.6632075035,
|
| 336 |
+
"failed_pct":12.698938992
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"model":"ibm-granite\/granite-4.0-h-micro",
|
| 340 |
+
"total":15080,
|
| 341 |
+
"failed":1895,
|
| 342 |
+
"score_nonfailed":0.3412995016,
|
| 343 |
+
"failed_pct":12.5663129973
|
| 344 |
},
|
| 345 |
{
|
| 346 |
"model":"qwen\/qwen3-30b-a3b",
|
|
|
|
| 356 |
"score_nonfailed":0.5317395427,
|
| 357 |
"failed_pct":10.8289124668
|
| 358 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 359 |
{
|
| 360 |
"model":"qwen\/qwen3-30b-a3b-instruct-2507",
|
| 361 |
"total":15030,
|
|
|
|
| 363 |
"score_nonfailed":0.4588521485,
|
| 364 |
"failed_pct":8.3300066534
|
| 365 |
},
|
| 366 |
+
{
|
| 367 |
+
"model":"deepseek\/deepseek-v4-pro",
|
| 368 |
+
"total":15080,
|
| 369 |
+
"failed":1250,
|
| 370 |
+
"score_nonfailed":0.6586114784,
|
| 371 |
+
"failed_pct":8.2891246684
|
| 372 |
+
},
|
| 373 |
{
|
| 374 |
"model":"x-ai\/grok-4.1-fast",
|
| 375 |
"total":15030,
|
|
|
|
| 391 |
"score_nonfailed":0.7847097861,
|
| 392 |
"failed_pct":7.3170731707
|
| 393 |
},
|
| 394 |
+
{
|
| 395 |
+
"model":"liquid\/lfm-2-24b-a2b-20260224",
|
| 396 |
+
"total":15080,
|
| 397 |
+
"failed":1102,
|
| 398 |
+
"score_nonfailed":0.3432068461,
|
| 399 |
+
"failed_pct":7.3076923077
|
| 400 |
+
},
|
| 401 |
{
|
| 402 |
"model":"openai\/gpt-5",
|
| 403 |
"total":15080,
|
|
|
|
| 422 |
{
|
| 423 |
"model":"anthropic\/claude-sonnet-4.6",
|
| 424 |
"total":15080,
|
| 425 |
+
"failed":719,
|
| 426 |
+
"score_nonfailed":0.6481560432,
|
| 427 |
+
"failed_pct":4.7679045093
|
| 428 |
},
|
| 429 |
{
|
| 430 |
"model":"mistralai\/ministral-8b-2512",
|
|
|
|
| 457 |
{
|
| 458 |
"model":"mistralai\/ministral-14b-2512",
|
| 459 |
"total":15080,
|
| 460 |
+
"failed":399,
|
| 461 |
+
"score_nonfailed":0.4554816031,
|
| 462 |
+
"failed_pct":2.6458885942
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 463 |
},
|
| 464 |
{
|
| 465 |
"model":"openai\/gpt-5-nano",
|
|
|
|
| 469 |
"failed_pct":2.374005305
|
| 470 |
},
|
| 471 |
{
|
| 472 |
+
"model":"deepseek\/deepseek-v3.2-exp",
|
| 473 |
"total":15080,
|
| 474 |
+
"failed":344,
|
| 475 |
+
"score_nonfailed":0.5800776106,
|
| 476 |
+
"failed_pct":2.2811671088
|
| 477 |
},
|
| 478 |
{
|
| 479 |
"model":"bytedance-seed\/seed-2.0-mini-20260224",
|
|
|
|
| 489 |
"score_nonfailed":0.5004845457,
|
| 490 |
"failed_pct":1.1737400531
|
| 491 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 492 |
{
|
| 493 |
"model":"openai\/gpt-5.5",
|
| 494 |
"total":15030,
|
|
|
|
| 496 |
"score_nonfailed":0.6520055238,
|
| 497 |
"failed_pct":1.1177644711
|
| 498 |
},
|
| 499 |
+
{
|
| 500 |
+
"model":"google\/gemini-3.1-pro-preview",
|
| 501 |
+
"total":15080,
|
| 502 |
+
"failed":162,
|
| 503 |
+
"score_nonfailed":0.6901710236,
|
| 504 |
+
"failed_pct":1.074270557
|
| 505 |
+
},
|
| 506 |
{
|
| 507 |
"model":"qwen\/qwen3.6-plus-04-02",
|
| 508 |
"total":15030,
|
|
|
|
| 518 |
"failed_pct":0.998003992
|
| 519 |
},
|
| 520 |
{
|
| 521 |
+
"model":"ibm-granite\/granite-4.1-8b-20260429",
|
| 522 |
"total":15080,
|
| 523 |
+
"failed":148,
|
| 524 |
+
"score_nonfailed":0.4240917581,
|
| 525 |
+
"failed_pct":0.9814323607
|
| 526 |
+
},
|
| 527 |
+
{
|
| 528 |
+
"model":"google\/gemini-3.1-flash-lite",
|
| 529 |
+
"total":15080,
|
| 530 |
+
"failed":123,
|
| 531 |
+
"score_nonfailed":0.6531875607,
|
| 532 |
+
"failed_pct":0.8156498674
|
| 533 |
},
|
| 534 |
{
|
| 535 |
"model":"openai\/gpt-5.3-chat-20260303",
|
|
|
|
| 539 |
"failed_pct":0.7252162342
|
| 540 |
},
|
| 541 |
{
|
| 542 |
+
"model":"anthropic\/claude-opus-4.8",
|
| 543 |
"total":15080,
|
| 544 |
+
"failed":106,
|
| 545 |
+
"score_nonfailed":0.6609262567,
|
| 546 |
+
"failed_pct":0.7029177719
|
| 547 |
},
|
| 548 |
{
|
| 549 |
"model":"anthropic\/claude-opus-4.7",
|
| 550 |
"total":15080,
|
| 551 |
+
"failed":95,
|
| 552 |
+
"score_nonfailed":0.6683285811,
|
| 553 |
+
"failed_pct":0.6299734748
|
| 554 |
},
|
| 555 |
{
|
| 556 |
"model":"x-ai\/grok-4.20",
|
|
|
|
| 559 |
"score_nonfailed":0.6311292606,
|
| 560 |
"failed_pct":0.5921490353
|
| 561 |
},
|
| 562 |
+
{
|
| 563 |
+
"model":"mistralai\/mistral-small-3.2-24b-instruct",
|
| 564 |
+
"total":15080,
|
| 565 |
+
"failed":89,
|
| 566 |
+
"score_nonfailed":0.4620728378,
|
| 567 |
+
"failed_pct":0.5901856764
|
| 568 |
+
},
|
| 569 |
{
|
| 570 |
"model":"openai\/gpt-5.2",
|
| 571 |
"total":15080,
|
|
|
|
| 576 |
{
|
| 577 |
"model":"bytedance-seed\/seed-2.0-lite-20260309",
|
| 578 |
"total":15080,
|
| 579 |
+
"failed":70,
|
| 580 |
+
"score_nonfailed":0.5855043059,
|
| 581 |
+
"failed_pct":0.4641909814
|
| 582 |
},
|
| 583 |
{
|
| 584 |
"model":"openai\/gpt-5-mini",
|
|
|
|
| 622 |
"score_nonfailed":0.5130942947,
|
| 623 |
"failed_pct":0.0266134398
|
| 624 |
},
|
| 625 |
+
{
|
| 626 |
+
"model":"x-ai\/grok-4-fast",
|
| 627 |
+
"total":15030,
|
| 628 |
+
"failed":0,
|
| 629 |
+
"score_nonfailed":0.5469999688,
|
| 630 |
+
"failed_pct":0.0
|
| 631 |
+
},
|
| 632 |
{
|
| 633 |
"model":"perplexity\/sonar-reasoning-pro",
|
| 634 |
"total":17,
|
|
|
|
| 636 |
"score_nonfailed":0.7141204358,
|
| 637 |
"failed_pct":0.0
|
| 638 |
},
|
| 639 |
+
{
|
| 640 |
+
"model":"alpindale\/goliath-120b",
|
| 641 |
+
"total":170,
|
| 642 |
+
"failed":0,
|
| 643 |
+
"score_nonfailed":0.3700368906,
|
| 644 |
+
"failed_pct":0.0
|
| 645 |
+
},
|
| 646 |
{
|
| 647 |
"model":"baidu\/ernie-4.5-300b-a47b",
|
| 648 |
"total":15030,
|
|
|
|
| 651 |
"failed_pct":0.0
|
| 652 |
},
|
| 653 |
{
|
| 654 |
+
"model":"x-ai\/grok-4",
|
| 655 |
+
"total":3475,
|
| 656 |
"failed":0,
|
| 657 |
+
"score_nonfailed":0.6712118876,
|
| 658 |
"failed_pct":0.0
|
| 659 |
},
|
| 660 |
{
|
| 661 |
+
"model":"x-ai\/grok-3",
|
| 662 |
+
"total":170,
|
| 663 |
"failed":0,
|
| 664 |
+
"score_nonfailed":0.6330974229,
|
| 665 |
"failed_pct":0.0
|
| 666 |
},
|
| 667 |
{
|
| 668 |
+
"model":"qwen\/qwen3-8b-04-28",
|
| 669 |
+
"total":113,
|
| 670 |
"failed":0,
|
| 671 |
+
"score_nonfailed":0.6392222245,
|
| 672 |
"failed_pct":0.0
|
| 673 |
},
|
| 674 |
{
|
| 675 |
+
"model":"anthropic\/claude-3-7-sonnet-20250219",
|
| 676 |
+
"total":2818,
|
| 677 |
"failed":0,
|
| 678 |
+
"score_nonfailed":0.6793719385,
|
| 679 |
"failed_pct":0.0
|
| 680 |
},
|
| 681 |
{
|
|
|
|
| 685 |
"score_nonfailed":0.5794774559,
|
| 686 |
"failed_pct":0.0
|
| 687 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 688 |
{
|
| 689 |
"model":"anthropic\/claude-3.5-sonnet",
|
| 690 |
"total":14288,
|
|
|
|
| 693 |
"failed_pct":0.0
|
| 694 |
},
|
| 695 |
{
|
| 696 |
+
"model":"anthropic\/claude-3.7-sonnet",
|
| 697 |
+
"total":15030,
|
| 698 |
"failed":0,
|
| 699 |
+
"score_nonfailed":0.632849603,
|
| 700 |
"failed_pct":0.0
|
| 701 |
},
|
| 702 |
{
|
| 703 |
+
"model":"anthropic\/claude-haiku-4.5",
|
| 704 |
"total":15080,
|
| 705 |
"failed":0,
|
| 706 |
+
"score_nonfailed":0.5380086427,
|
| 707 |
"failed_pct":0.0
|
| 708 |
},
|
| 709 |
{
|
|
|
|
| 714 |
"failed_pct":0.0
|
| 715 |
},
|
| 716 |
{
|
| 717 |
+
"model":"amazon\/nova-micro-v1",
|
| 718 |
+
"total":17,
|
| 719 |
"failed":0,
|
| 720 |
+
"score_nonfailed":0.6700323243,
|
| 721 |
"failed_pct":0.0
|
| 722 |
},
|
| 723 |
{
|
|
|
|
| 728 |
"failed_pct":0.0
|
| 729 |
},
|
| 730 |
{
|
| 731 |
+
"model":"amazon\/nova-premier-v1",
|
| 732 |
"total":15080,
|
| 733 |
"failed":0,
|
| 734 |
+
"score_nonfailed":0.5266995001,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 735 |
"failed_pct":0.0
|
| 736 |
},
|
| 737 |
{
|
| 738 |
+
"model":"google\/gemini-2.5-flash",
|
| 739 |
+
"total":15080,
|
| 740 |
"failed":0,
|
| 741 |
+
"score_nonfailed":0.4238758246,
|
| 742 |
"failed_pct":0.0
|
| 743 |
},
|
| 744 |
{
|
| 745 |
+
"model":"openai\/gpt-4.1-mini",
|
| 746 |
+
"total":170,
|
| 747 |
"failed":0,
|
| 748 |
+
"score_nonfailed":0.6424898144,
|
| 749 |
"failed_pct":0.0
|
| 750 |
},
|
| 751 |
{
|
|
|
|
| 825 |
"score_nonfailed":0.467426787,
|
| 826 |
"failed_pct":0.0
|
| 827 |
},
|
| 828 |
+
{
|
| 829 |
+
"model":"google\/gemini-2.0-flash-lite-001",
|
| 830 |
+
"total":17,
|
| 831 |
+
"failed":0,
|
| 832 |
+
"score_nonfailed":0.7041712433,
|
| 833 |
+
"failed_pct":0.0
|
| 834 |
+
},
|
| 835 |
{
|
| 836 |
"model":"google\/gemma-3-27b-it",
|
| 837 |
"total":15080,
|
|
|
|
| 860 |
"score_nonfailed":0.5588659385,
|
| 861 |
"failed_pct":0.0
|
| 862 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 863 |
{
|
| 864 |
"model":"mistralai\/mistral-nemo",
|
| 865 |
"total":15080,
|
|
|
|
| 888 |
"score_nonfailed":0.5523425103,
|
| 889 |
"failed_pct":0.0
|
| 890 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 891 |
{
|
| 892 |
"model":"neversleep\/noromaid-20b",
|
| 893 |
"total":170,
|
|
|
|
| 902 |
"score_nonfailed":0.6629729711,
|
| 903 |
"failed_pct":0.0
|
| 904 |
},
|
| 905 |
+
{
|
| 906 |
+
"model":"cohere\/command-r-plus-08-2024",
|
| 907 |
+
"total":6369,
|
| 908 |
+
"failed":0,
|
| 909 |
+
"score_nonfailed":0.3479812964,
|
| 910 |
+
"failed_pct":0.0
|
| 911 |
+
},
|
| 912 |
{
|
| 913 |
"model":"cohere\/command-r-08-2024",
|
| 914 |
"total":170,
|
|
|
|
| 938 |
"failed_pct":0.0
|
| 939 |
},
|
| 940 |
{
|
| 941 |
+
"model":"openai\/gpt-4.1",
|
| 942 |
"total":15080,
|
| 943 |
"failed":0,
|
| 944 |
+
"score_nonfailed":0.5577101349,
|
| 945 |
"failed_pct":0.0
|
| 946 |
},
|
| 947 |
{
|
| 948 |
+
"model":"google\/gemini-2.5-flash-image",
|
| 949 |
"total":170,
|
| 950 |
"failed":0,
|
| 951 |
+
"score_nonfailed":0.713401524,
|
| 952 |
"failed_pct":0.0
|
| 953 |
},
|
| 954 |
{
|