Count merge commits
Tests ability to count merge commits in history. Evaluates filtering for merge-specific entries.

These commands set up the repo before the model sees the prompt. They define the starting file structure, staged changes, and Git history.

  1. 01 git init
  2. 02 git config user.email 'test@test.com'
  3. 03 git config user.name 'Test User'
  4. 04 echo 'base' > file.txt
  5. 05 git add file.txt
  6. 06 git commit -m 'Initial commit'
  7. 07 git checkout -b feature-a
  8. 08 echo 'a' > a.txt
  9. 09 git add a.txt
  10. 10 git commit -m 'Feature A'
  11. 11 git checkout master || git checkout main
  12. 12 git merge --no-ff feature-a -m 'Merge feature-a'
  13. 13 git checkout -b feature-b
  14. 14 echo 'b' > b.txt
  15. 15 git add b.txt
  16. 16 git commit -m 'Feature B'
  17. 17 git checkout master || git checkout main
  18. 18 git merge --no-ff feature-b -m 'Merge feature-b'
  19. 19 git checkout -b feature-c
  20. 20 echo 'c' > c.txt
  21. 21 git add c.txt
  22. 22 git commit -m 'Feature C'
  23. 23 git checkout master || git checkout main
  24. 24 git merge --no-ff feature-c -m 'Merge feature-c'
  25. 25 echo 'post' > post.txt
  26. 26 git add post.txt
  27. 27 git commit -m 'Post-merge commit'
Prompt
How many merge commits exist in this repository? Use git log --merges to count them. Output ONLY the number, nothing else.
Expected
3

Scoped model quality, cost, API time, and token usage for git_log_format/f010.

Loading...
Loading raw attempt evidence…
anthropic/claude-fable-5:high PASS 100% 1,425 in → 3 out (0 reasoning)
3
anthropic/claude-fable-5:high__json_schema PASS 100% 1,632 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-fable-5:low PASS 100% 1,450 in → 3 out (0 reasoning)
3
anthropic/claude-fable-5:low__json_schema PASS 100% 1,644 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-fable-5:max PASS 100% 1,452 in → 67 out (26 reasoning)
3
anthropic/claude-fable-5:max__json_schema PASS 100% 1,622 in → 79 out (30 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-fable-5:medium PASS 100% 1,409 in → 3 out (0 reasoning)
3
anthropic/claude-fable-5:medium__json_schema PASS 100% 1,592 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-fable-5:xhigh PASS 100% 1,385 in → 3 out (0 reasoning)
3
anthropic/claude-fable-5:xhigh__json_schema PASS 100% 1,624 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-haiku-4.5:high PASS 100% 1,247 in → 237 out (157 reasoning)
3
anthropic/claude-haiku-4.5:high__json_schema PASS 100% 1,372 in → 367 out (323 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-haiku-4.5:low PASS 100% 1,249 in → 238 out (165 reasoning)
3
anthropic/claude-haiku-4.5:low__json_schema PASS 100% 1,400 in → 433 out (307 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-haiku-4.5:medium PASS 100% 1,217 in → 277 out (178 reasoning)
3
anthropic/claude-haiku-4.5:medium__json_schema PASS 100% 1,427 in → 313 out (202 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-haiku-4.5:none PASS 100% 1,203 in → 5 out (0 reasoning)
3
anthropic/claude-haiku-4.5:none__json_schema PASS 100% 1,360 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-haiku-4.5:xhigh PASS 100% 1,236 in → 292 out (191 reasoning)
3
anthropic/claude-haiku-4.5:xhigh__json_schema PASS 100% 1,396 in → 341 out (240 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-opus-4.6:high PASS 100% 1,193 in → 5 out (0 reasoning)
3
anthropic/claude-opus-4.6:high__json_schema PASS 100% 1,358 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.6:low PASS 100% 1,210 in → 5 out (0 reasoning)
3
anthropic/claude-opus-4.6:low__json_schema PASS 100% 1,344 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.6:max PASS 100% 1,192 in → 5 out (0 reasoning)
3
anthropic/claude-opus-4.6:max__json_schema PASS 100% 1,328 in → 95 out (58 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.6:medium PASS 100% 1,188 in → 5 out (0 reasoning)
3
anthropic/claude-opus-4.6:medium__json_schema PASS 100% 1,368 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.6:none PASS 100% 1,222 in → 5 out (0 reasoning)
3
anthropic/claude-opus-4.6:none__json_schema PASS 100% 1,379 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.6:xhigh PASS 100% 1,203 in → 5 out (0 reasoning)
3
anthropic/claude-opus-4.6:xhigh__json_schema PASS 100% 1,369 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.7:high PASS 100% 1,462 in → 6 out (0 reasoning)
3
anthropic/claude-opus-4.7:high__json_schema PASS 100% 1,618 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.7:low PASS 100% 1,442 in → 6 out (0 reasoning)
3
anthropic/claude-opus-4.7:low__json_schema PASS 100% 1,614 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.7:max PASS 100% 1,399 in → 6 out (0 reasoning)
3
anthropic/claude-opus-4.7:max__json_schema PASS 100% 1,637 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.7:medium PASS 100% 1,448 in → 6 out (0 reasoning)
3
anthropic/claude-opus-4.7:medium__json_schema PASS 100% 1,602 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.7:none PASS 100% 1,410 in → 6 out (0 reasoning)
3
anthropic/claude-opus-4.7:none__json_schema PASS 100% 1,643 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.7:xhigh PASS 100% 1,451 in → 6 out (0 reasoning)
3
anthropic/claude-opus-4.7:xhigh__json_schema PASS 100% 1,628 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.8:high PASS 100% 1,435 in → 3 out (0 reasoning)
3
anthropic/claude-opus-4.8:high__json_schema PASS 100% 1,598 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-opus-4.8:low PASS 100% 1,409 in → 3 out (0 reasoning)
3
anthropic/claude-opus-4.8:low__json_schema PASS 100% 1,627 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.8:max PASS 100% 1,433 in → 3 out (0 reasoning)
3
anthropic/claude-opus-4.8:max__json_schema PASS 100% 1,638 in → 80 out (34 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-opus-4.8:medium PASS 100% 1,403 in → 3 out (0 reasoning)
3
anthropic/claude-opus-4.8:medium__json_schema PASS 100% 1,644 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.8:none PASS 100% 1,413 in → 3 out (0 reasoning)
3
anthropic/claude-opus-4.8:none__json_schema PASS 100% 1,609 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-opus-4.8:xhigh PASS 100% 1,444 in → 3 out (0 reasoning)
3
anthropic/claude-opus-4.8:xhigh__json_schema PASS 100% 1,595 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-sonnet-4.6:high PASS 100% 1,215 in → 5 out (0 reasoning)
3
anthropic/claude-sonnet-4.6:high__json_schema PASS 100% 1,380 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-sonnet-4.6:low PASS 100% 1,194 in → 5 out (0 reasoning)
3
anthropic/claude-sonnet-4.6:low__json_schema PASS 100% 1,343 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-sonnet-4.6:max PASS 100% 1,184 in → 5 out (0 reasoning)
3
anthropic/claude-sonnet-4.6:max__json_schema PASS 100% 1,363 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-sonnet-4.6:medium PASS 100% 1,214 in → 5 out (0 reasoning)
3
anthropic/claude-sonnet-4.6:medium__json_schema PASS 100% 1,384 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-sonnet-4.6:none PASS 100% 1,186 in → 5 out (0 reasoning)
3
anthropic/claude-sonnet-4.6:none__json_schema PASS 100% 1,366 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-sonnet-4.6:xhigh PASS 100% 1,186 in → 5 out (0 reasoning)
3
anthropic/claude-sonnet-4.6:xhigh__json_schema PASS 100% 1,374 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
anthropic/claude-sonnet-5:high PASS 100% 1,421 in → 3 out (0 reasoning)
3
anthropic/claude-sonnet-5:high__json_schema PASS 100% 1,628 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-sonnet-5:low PASS 100% 1,407 in → 3 out (0 reasoning)
3
anthropic/claude-sonnet-5:low__json_schema PASS 100% 1,683 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-sonnet-5:medium PASS 100% 1,399 in → 3 out (0 reasoning)
3
anthropic/claude-sonnet-5:medium__json_schema PASS 100% 1,617 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-sonnet-5:none PASS 100% 1,410 in → 3 out (0 reasoning)
3
anthropic/claude-sonnet-5:none__json_schema PASS 100% 1,607 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
anthropic/claude-sonnet-5:xhigh PASS 100% 1,395 in → 3 out (0 reasoning)
3
anthropic/claude-sonnet-5:xhigh__json_schema PASS 100% 1,639 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
arcee-ai/trinity-large-thinking:high PASS 100% 1,030 in → 459 out (456 reasoning)
3
arcee-ai/trinity-large-thinking:low PASS 100% 1,046 in → 524 out (526 reasoning)
3
arcee-ai/trinity-large-thinking:medium PASS 100% 1,026 in → 699 out (701 reasoning)
3
arcee-ai/trinity-large-thinking:xhigh PASS 100% 1,043 in → 852 out (853 reasoning)
3
arcee-ai/trinity-mini:high PASS 100% 1,015 in → 275 out (308 reasoning)
3
arcee-ai/trinity-mini:high__json_schema PASS 100% 1,053 in → 270 out (304 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
arcee-ai/trinity-mini:low PASS 100% 1,035 in → 281 out (313 reasoning)
3
arcee-ai/trinity-mini:low__json_schema PASS 100% 1,022 in → 267 out (270 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
arcee-ai/trinity-mini:medium PASS 100% 1,045 in → 225 out (255 reasoning)
3
arcee-ai/trinity-mini:medium__json_schema PASS 100% 1,045 in → 228 out (243 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
arcee-ai/trinity-mini:xhigh PASS 100% 1,031 in → 232 out (274 reasoning)
3
arcee-ai/trinity-mini:xhigh__json_schema PASS 100% 1,058 in → 197 out (200 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-flash-0731:high PASS 100% 1,044 in → 31 out (26 reasoning)
3
deepseek/deepseek-v4-flash-0731:high__json_schema PASS 100% 1,079 in → 87 out (68 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-flash-0731:low PASS 100% 1,068 in → 53 out (38 reasoning)
3
deepseek/deepseek-v4-flash-0731:low__json_schema PASS 100% 1,067 in → 94 out (84 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-flash-0731:max PASS 100% 1,144 in → 37 out (34 reasoning)
3
deepseek/deepseek-v4-flash-0731:max__json_schema PASS 100% 1,134 in → 49 out (37 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-flash-0731:medium PASS 100% 1,061 in → 51 out (41 reasoning)
3
deepseek/deepseek-v4-flash-0731:medium__json_schema PASS 100% 1,038 in → 63 out (37 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-flash-0731:none PASS 100% 1,083 in → 2 out (0 reasoning)
3
deepseek/deepseek-v4-flash-0731:none__json_schema PASS 100% 1,027 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
deepseek/deepseek-v4-flash-0731:xhigh PASS 100% 1,152 in → 40 out (33 reasoning)
3
deepseek/deepseek-v4-flash-0731:xhigh__json_schema PASS 100% 1,037 in → 38 out (30 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
deepseek/deepseek-v4-flash:high PASS 100% 1,081 in → 103 out (100 reasoning)
3
deepseek/deepseek-v4-flash:low PASS 100% 1,067 in → 49 out (46 reasoning)
3
deepseek/deepseek-v4-flash:medium PASS 100% 1,092 in → 60 out (57 reasoning)
3
deepseek/deepseek-v4-flash:medium__json_schema PASS 100% 1,094 in → 112 out (98 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-flash:none PASS 100% 1,082 in → 1 out (0 reasoning)
3
deepseek/deepseek-v4-flash:none__json_schema PASS 100% 1,148 in → 6 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
deepseek/deepseek-v4-flash:xhigh PASS 100% 1,133 in → 122 out (123 reasoning)
3
deepseek/deepseek-v4-flash:xhigh__json_schema PASS 100% 1,137 in → 138 out (127 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-pro:high PASS 100% 1,088 in → 88 out (85 reasoning)
3
deepseek/deepseek-v4-pro:high__json_schema PASS 100% 1,238 in → 109 out (101 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
deepseek/deepseek-v4-pro:low PASS 100% 1,071 in → 2 out (0 reasoning)
3
deepseek/deepseek-v4-pro:medium PASS 100% 1,057 in → 99 out (96 reasoning)
3
deepseek/deepseek-v4-pro:medium__json_schema PASS 100% 1,074 in → 97 out (86 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-pro:none PASS 100% 1,086 in → 1 out (0 reasoning)
3
deepseek/deepseek-v4-pro:none__json_schema PASS 100% 1,052 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
deepseek/deepseek-v4-pro:xhigh PASS 100% 1,126 in → 110 out (108 reasoning)
3
deepseek/deepseek-v4-pro:xhigh__json_schema PASS 100% 1,326 in → 256 out (249 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3-flash-preview:high PASS 100% 1,423 in → 326 out (325 reasoning)
3
google/gemini-3-flash-preview:high__json_schema PASS 100% 1,464 in → 362 out (357 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3-flash-preview:low PASS 100% 1,451 in → 247 out (246 reasoning)
3
google/gemini-3-flash-preview:low__json_schema PASS 100% 1,477 in → 364 out (359 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3-flash-preview:medium PASS 100% 1,434 in → 411 out (410 reasoning)
3
google/gemini-3-flash-preview:medium__json_schema PASS 100% 1,498 in → 275 out (270 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3-flash-preview:xhigh PASS 100% 1,431 in → 331 out (330 reasoning)
3
google/gemini-3-flash-preview:xhigh__json_schema PASS 100% 1,478 in → 417 out (411 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.1-flash-lite-preview:high PASS 100% 1,419 in → 280 out (279 reasoning)
3
google/gemini-3.1-flash-lite-preview:high__json_schema PASS 100% 1,476 in → 290 out (284 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.1-flash-lite-preview:low PASS 100% 1,424 in → 111 out (110 reasoning)
3
google/gemini-3.1-flash-lite-preview:low__json_schema PASS 100% 1,412 in → 116 out (110 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.1-flash-lite-preview:medium PASS 100% 1,433 in → 167 out (166 reasoning)
3
google/gemini-3.1-flash-lite-preview:medium__json_schema PASS 100% 1,504 in → 156 out (150 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.1-flash-lite-preview:xhigh PASS 100% 1,425 in → 382 out (381 reasoning)
3
google/gemini-3.1-flash-lite-preview:xhigh__json_schema PASS 100% 1,517 in → 263 out (253 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemini-3.1-pro-preview:high PASS 100% 1,417 in → 186 out (185 reasoning)
3
google/gemini-3.1-pro-preview:high__json_schema PASS 100% 1,486 in → 264 out (258 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.1-pro-preview:low PASS 100% 1,428 in → 230 out (229 reasoning)
3
google/gemini-3.1-pro-preview:low__json_schema PASS 100% 1,496 in → 85 out (79 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.1-pro-preview:medium PASS 100% 1,438 in → 264 out (263 reasoning)
3
google/gemini-3.1-pro-preview:medium__json_schema PASS 100% 1,487 in → 250 out (245 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.1-pro-preview:xhigh PASS 100% 1,410 in → 354 out (353 reasoning)
3
google/gemini-3.1-pro-preview:xhigh__json_schema PASS 100% 1,491 in → 98 out (92 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.5-flash-lite:high PASS 100% 1,439 in → 330 out (329 reasoning)
3
google/gemini-3.5-flash-lite:high__json_schema PASS 100% 1,442 in → 260 out (254 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.5-flash-lite:low PASS 100% 1,447 in → 1 out (0 reasoning)
3
google/gemini-3.5-flash-lite:low__json_schema PASS 100% 1,498 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemini-3.5-flash-lite:max PASS 100% 1,436 in → 369 out (368 reasoning)
3
google/gemini-3.5-flash-lite:max__json_schema PASS 100% 1,494 in → 453 out (448 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.5-flash-lite:medium PASS 100% 1,427 in → 100 out (99 reasoning)
3
google/gemini-3.5-flash-lite:medium__json_schema PASS 100% 1,424 in → 307 out (301 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.5-flash-lite:xhigh PASS 100% 1,441 in → 424 out (423 reasoning)
3
google/gemini-3.5-flash-lite:xhigh__json_schema PASS 100% 1,429 in → 374 out (369 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.5-flash:high PASS 100% 1,419 in → 480 out (479 reasoning)
3
google/gemini-3.5-flash:high__json_schema PASS 100% 1,479 in → 281 out (276 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.5-flash:low PASS 100% 1,424 in → 313 out (312 reasoning)
3
google/gemini-3.5-flash:low__json_schema PASS 100% 1,460 in → 138 out (133 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.5-flash:medium PASS 100% 1,431 in → 339 out (338 reasoning)
3
google/gemini-3.5-flash:medium__json_schema PASS 100% 1,465 in → 109 out (104 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.5-flash:xhigh PASS 100% 1,399 in → 380 out (379 reasoning)
3
google/gemini-3.5-flash:xhigh__json_schema PASS 100% 1,455 in → 220 out (215 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.6-flash:high PASS 100% 1,451 in → 256 out (255 reasoning)
3
google/gemini-3.6-flash:high__json_schema PASS 100% 1,505 in → 312 out (306 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemini-3.6-flash:low PASS 100% 1,447 in → 89 out (88 reasoning)
3
google/gemini-3.6-flash:low__json_schema PASS 100% 1,496 in → 57 out (52 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.6-flash:max PASS 100% 1,458 in → 107 out (106 reasoning)
3
google/gemini-3.6-flash:max__json_schema PASS 100% 1,503 in → 277 out (272 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.6-flash:medium PASS 100% 1,464 in → 110 out (109 reasoning)
3
google/gemini-3.6-flash:medium__json_schema PASS 100% 1,449 in → 158 out (153 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
google/gemini-3.6-flash:xhigh PASS 100% 1,440 in → 341 out (340 reasoning)
3
google/gemini-3.6-flash:xhigh__json_schema PASS 100% 1,520 in → 242 out (236 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemma-4-26b-a4b-it:high PASS 100% 1,469 in → 632 out (445 reasoning)
3
google/gemma-4-26b-a4b-it:high__json_schema PASS 100% 1,471 in → 497 out (330 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemma-4-26b-a4b-it:low PASS 100% 1,449 in → 653 out (436 reasoning)
3
google/gemma-4-26b-a4b-it:low__json_schema PASS 100% 1,419 in → 434 out (318 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
google/gemma-4-26b-a4b-it:medium PASS 100% 1,476 in → 500 out (424 reasoning)
3
google/gemma-4-26b-a4b-it:medium__json_schema PASS 100% 1,441 in → 507 out (336 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemma-4-26b-a4b-it:none PASS 100% 1,461 in → 2 out (0 reasoning)
3
google/gemma-4-26b-a4b-it:none__json_schema PASS 100% 1,464 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemma-4-26b-a4b-it:xhigh PASS 100% 1,438 in → 560 out (492 reasoning)
3
google/gemma-4-26b-a4b-it:xhigh__json_schema PASS 100% 1,444 in → 325 out (203 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemma-4-31b-it:high PASS 100% 1,464 in → 242 out (160 reasoning)
3
google/gemma-4-31b-it:high__json_schema PASS 100% 1,427 in → 239 out (175 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemma-4-31b-it:low PASS 100% 1,422 in → 492 out (347 reasoning)
3
google/gemma-4-31b-it:medium PASS 100% 1,429 in → 348 out (253 reasoning)
3
google/gemma-4-31b-it:medium__json_schema PASS 100% 1,436 in → 158 out (123 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemma-4-31b-it:none PASS 100% 1,452 in → 2 out (0 reasoning)
3
google/gemma-4-31b-it:none__json_schema PASS 100% 1,414 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
google/gemma-4-31b-it:xhigh PASS 100% 1,421 in → 321 out (220 reasoning)
3
google/gemma-4-31b-it:xhigh__json_schema PASS 100% 1,444 in → 387 out (258 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
ibm-granite/granite-4.1-8b PASS 100% 1,140 in → 2 out
3
ibm-granite/granite-4.1-8b__json_schema PASS 100% 1,124 in → 9 out
3
JSON Schema Structured Output
(raw) { "count": 3 }
inclusionai/ling-2.6-flash PASS 100% 1,444 in → 2 out
3
inclusionai/ling-2.6-flash__json_schema PASS 100% 1,449 in → 14 out
3
JSON Schema Structured Output
(raw) { "count": 3 }
liquid/lfm-2-24b-a2b PASS 100% 1,108 in → 2 out
3
minimax/minimax-m2.5:high__json_schema PASS 100% 1,096 in → 82 out (74 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
minimax/minimax-m2.5:low PASS 100% 1,090 in → 285 out (261 reasoning)
3
minimax/minimax-m2.5:low__json_schema PASS 100% 1,068 in → 93 out (78 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
minimax/minimax-m2.5:medium PASS 100% 1,076 in → 198 out (184 reasoning)
3
minimax/minimax-m2.5:medium__json_schema PASS 100% 1,104 in → 112 out (101 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
minimax/minimax-m2.5:xhigh PASS 100% 1,064 in → 116 out (122 reasoning)
3
minimax/minimax-m2.5:xhigh__json_schema PASS 100% 1,080 in → 148 out (135 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
minimax/minimax-m2.7:high PASS 100% 1,056 in → 94 out (92 reasoning)
3
minimax/minimax-m2.7:high__json_schema PASS 100% 1,209 in → 350 out (343 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
minimax/minimax-m2.7:low PASS 100% 1,090 in → 107 out (112 reasoning)
3
minimax/minimax-m2.7:low__json_schema PASS 100% 1,195 in → 253 out (246 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
minimax/minimax-m2.7:medium PASS 100% 1,081 in → 121 out (132 reasoning)
3
minimax/minimax-m2.7:medium__json_schema PASS 100% 1,194 in → 161 out (153 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
minimax/minimax-m2.7:xhigh PASS 100% 1,104 in → 118 out (115 reasoning)
3
minimax/minimax-m2.7:xhigh__json_schema PASS 100% 1,239 in → 195 out (188 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
minimax/minimax-m3:high PASS 100% 1,219 in → 59 out (59 reasoning)
3
minimax/minimax-m3:high__json_schema PASS 100% 1,203 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
minimax/minimax-m3:low PASS 100% 1,218 in → 113 out (115 reasoning)
3
minimax/minimax-m3:low__json_schema PASS 100% 1,187 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
minimax/minimax-m3:medium PASS 100% 1,212 in → 75 out (67 reasoning)
3
minimax/minimax-m3:medium__json_schema PASS 100% 1,166 in → 9 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
minimax/minimax-m3:xhigh PASS 100% 1,217 in → 109 out (111 reasoning)
3
minimax/minimax-m3:xhigh__json_schema PASS 100% 1,235 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
mistralai/devstral-2512 PASS 100% 1,397 in → 2 out
3
mistralai/devstral-2512__json_schema PASS 100% 1,411 in → 7 out
3
JSON Schema Structured Output
(raw) {"count": 3}
mistralai/mistral-medium-3-5:high PASS 100% 1,395 in → 290 out (281 reasoning)
3
mistralai/mistral-medium-3-5:high__json_schema PASS 100% 1,400 in → 131 out (118 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
mistralai/mistral-medium-3-5:low PASS 100% 1,392 in → 188 out (187 reasoning)
3
mistralai/mistral-medium-3-5:low__json_schema PASS 100% 1,367 in → 347 out (284 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
mistralai/mistral-medium-3-5:medium PASS 100% 1,395 in → 234 out (222 reasoning)
3
mistralai/mistral-medium-3-5:medium__json_schema PASS 100% 1,391 in → 144 out (137 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
mistralai/mistral-medium-3-5:none PASS 100% 1,410 in → 2 out (0 reasoning)
3
mistralai/mistral-medium-3-5:none__json_schema PASS 100% 1,375 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
mistralai/mistral-medium-3-5:xhigh PASS 100% 1,392 in → 283 out (234 reasoning)
3
mistralai/mistral-medium-3-5:xhigh__json_schema PASS 100% 1,399 in → 178 out (172 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
moonshotai/kimi-k2.6:high PASS 100% 1,037 in → 210 out (208 reasoning)
3
moonshotai/kimi-k2.6:high__json_schema PASS 100% 1,056 in → 595 out (186 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
moonshotai/kimi-k2.6:low PASS 100% 1,035 in → 200 out (166 reasoning)
3
moonshotai/kimi-k2.6:low__json_schema PASS 100% 1,024 in → 10 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
moonshotai/kimi-k2.6:medium PASS 100% 1,048 in → 138 out (147 reasoning)
3
moonshotai/kimi-k2.6:medium__json_schema PASS 100% 1,210 in → 165 out (158 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
moonshotai/kimi-k2.6:xhigh PASS 100% 1,053 in → 156 out (153 reasoning)
3
moonshotai/kimi-k2.7-code:high PASS 100% 1,032 in → 96 out (93 reasoning)
3
moonshotai/kimi-k2.7-code:high__json_schema PASS 100% 1,104 in → 98 out (90 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
moonshotai/kimi-k2.7-code:low PASS 100% 1,077 in → 75 out (83 reasoning)
3
moonshotai/kimi-k2.7-code:medium PASS 100% 1,067 in → 99 out (96 reasoning)
3
moonshotai/kimi-k2.7-code:xhigh PASS 100% 1,071 in → 121 out (111 reasoning)
3
moonshotai/kimi-k2.7-code:xhigh__json_schema PASS 100% 1,146 in → 40 out (33 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
moonshotai/kimi-k3:high PASS 100% 1,105 in → 126 out (110 reasoning)
3
moonshotai/kimi-k3:high__json_schema PASS 100% 1,109 in → 77 out (61 reasoning)
3
moonshotai/kimi-k3:low PASS 100% 1,088 in → 148 out (132 reasoning)
3
moonshotai/kimi-k3:low__json_schema PASS 100% 1,135 in → 97 out (81 reasoning)
3
moonshotai/kimi-k3:max PASS 100% 1,117 in → 51 out (35 reasoning)
3
moonshotai/kimi-k3:max__json_schema PASS 100% 1,090 in → 75 out (59 reasoning)
3
moonshotai/kimi-k3:medium PASS 100% 1,090 in → 104 out (88 reasoning)
3
moonshotai/kimi-k3:medium__json_schema PASS 100% 1,130 in → 97 out (81 reasoning)
3
moonshotai/kimi-k3:xhigh PASS 100% 1,118 in → 81 out (65 reasoning)
3
moonshotai/kimi-k3:xhigh__json_schema PASS 100% 1,113 in → 45 out (29 reasoning)
3
nvidia/nemotron-3-nano-30b-a3b:high PASS 100% 1,399 in → 95 out (91 reasoning)
3
nvidia/nemotron-3-nano-30b-a3b:high__json_schema PASS 100% 1,412 in → 73 out (67 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-nano-30b-a3b:low PASS 100% 1,406 in → 789 out (741 reasoning)
3
nvidia/nemotron-3-nano-30b-a3b:low__json_schema PASS 100% 1,402 in → 383 out (259 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-nano-30b-a3b:medium PASS 100% 1,409 in → 232 out (222 reasoning)
3
nvidia/nemotron-3-nano-30b-a3b:medium__json_schema PASS 100% 1,424 in → 124 out (88 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-nano-30b-a3b:none PASS 100% 1,435 in → 2 out (0 reasoning)
3
nvidia/nemotron-3-nano-30b-a3b:none__json_schema PASS 100% 1,435 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-nano-30b-a3b:xhigh PASS 100% 1,432 in → 148 out (157 reasoning)
3
nvidia/nemotron-3-nano-30b-a3b:xhigh__json_schema PASS 100% 1,410 in → 173 out (151 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-super-120b-a12b:high PASS 100% 1,380 in → 70 out (61 reasoning)
3
nvidia/nemotron-3-super-120b-a12b:high__json_schema PASS 100% 1,418 in → 86 out (73 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-super-120b-a12b:low PASS 100% 1,401 in → 59 out (55 reasoning)
3
nvidia/nemotron-3-super-120b-a12b:low__json_schema PASS 100% 1,394 in → 59 out (38 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-super-120b-a12b:medium PASS 100% 1,386 in → 66 out (62 reasoning)
3
nvidia/nemotron-3-super-120b-a12b:medium__json_schema PASS 100% 1,425 in → 69 out (53 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
nvidia/nemotron-3-super-120b-a12b:none PASS 100% 1,415 in → 2 out (0 reasoning)
3
nvidia/nemotron-3-super-120b-a12b:none__json_schema PASS 100% 1,402 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
nvidia/nemotron-3-super-120b-a12b:xhigh PASS 100% 1,399 in → 69 out (48 reasoning)
3
nvidia/nemotron-3-super-120b-a12b:xhigh__json_schema PASS 100% 1,396 in → 75 out (59 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
openai/gpt-5.4-mini:high PASS 100% 1,061 in → 61 out (54 reasoning)
3
openai/gpt-5.4-mini:high__json_schema PASS 100% 1,080 in → 129 out (114 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-mini:low PASS 100% 1,061 in → 21 out (14 reasoning)
3
openai/gpt-5.4-mini:low__json_schema PASS 100% 1,084 in → 25 out (10 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-mini:medium PASS 100% 1,048 in → 27 out (20 reasoning)
3
openai/gpt-5.4-mini:medium__json_schema PASS 100% 1,103 in → 161 out (146 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-mini:none PASS 100% 1,073 in → 5 out (0 reasoning)
3
openai/gpt-5.4-mini:none__json_schema PASS 100% 1,081 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-mini:xhigh PASS 100% 1,027 in → 43 out (36 reasoning)
3
openai/gpt-5.4-mini:xhigh__json_schema PASS 100% 1,091 in → 610 out (595 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-nano:high PASS 100% 1,074 in → 55 out (48 reasoning)
3
openai/gpt-5.4-nano:high__json_schema PASS 100% 1,104 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-nano:low PASS 100% 1,035 in → 5 out (0 reasoning)
3
openai/gpt-5.4-nano:low__json_schema PASS 100% 1,078 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-nano:medium PASS 100% 1,049 in → 27 out (20 reasoning)
3
openai/gpt-5.4-nano:medium__json_schema PASS 100% 1,098 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-nano:none PASS 100% 1,028 in → 5 out (0 reasoning)
3
openai/gpt-5.4-nano:none__json_schema PASS 100% 1,078 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4-nano:xhigh PASS 100% 1,071 in → 57 out (50 reasoning)
3
openai/gpt-5.4-nano:xhigh__json_schema PASS 100% 1,080 in → 495 out (480 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4:high PASS 100% 1,022 in → 36 out (29 reasoning)
3
openai/gpt-5.4:high__json_schema PASS 100% 1,087 in → 51 out (36 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4:low PASS 100% 1,023 in → 21 out (14 reasoning)
3
openai/gpt-5.4:low__json_schema PASS 100% 1,103 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4:medium PASS 100% 1,063 in → 24 out (17 reasoning)
3
openai/gpt-5.4:medium__json_schema PASS 100% 1,081 in → 40 out (25 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4:none PASS 100% 1,035 in → 5 out (0 reasoning)
3
openai/gpt-5.4:none__json_schema PASS 100% 1,087 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.4:xhigh PASS 100% 1,074 in → 54 out (47 reasoning)
3
openai/gpt-5.4:xhigh__json_schema PASS 100% 1,057 in → 1,567 out (1,552 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.5:high PASS 100% 1,047 in → 30 out (23 reasoning)
3
openai/gpt-5.5:high__json_schema PASS 100% 1,056 in → 221 out (206 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.5:low PASS 100% 1,076 in → 5 out (0 reasoning)
3
openai/gpt-5.5:low__json_schema PASS 100% 1,099 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.5:medium PASS 100% 1,046 in → 25 out (18 reasoning)
3
openai/gpt-5.5:medium__json_schema PASS 100% 1,077 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.5:none PASS 100% 1,056 in → 5 out (0 reasoning)
3
openai/gpt-5.5:none__json_schema PASS 100% 1,088 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.5:xhigh PASS 100% 1,033 in → 64 out (57 reasoning)
3
openai/gpt-5.5:xhigh__json_schema PASS 100% 1,109 in → 319 out (304 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-luna:high PASS 100% 1,049 in → 5 out (0 reasoning)
3
openai/gpt-5.6-luna:high__json_schema PASS 100% 1,073 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-luna:low PASS 100% 1,054 in → 5 out (0 reasoning)
3
openai/gpt-5.6-luna:low__json_schema PASS 100% 1,054 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-luna:max PASS 100% 1,039 in → 44 out (37 reasoning)
3
openai/gpt-5.6-luna:max__json_schema PASS 100% 1,092 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-luna:medium PASS 100% 1,050 in → 5 out (0 reasoning)
3
openai/gpt-5.6-luna:medium__json_schema PASS 100% 1,066 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-luna:none PASS 100% 1,048 in → 5 out (0 reasoning)
3
openai/gpt-5.6-luna:none__json_schema PASS 100% 1,077 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-luna:xhigh PASS 100% 1,042 in → 5 out (0 reasoning)
3
openai/gpt-5.6-luna:xhigh__json_schema PASS 100% 1,065 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-sol:high PASS 100% 1,045 in → 5 out (0 reasoning)
3
openai/gpt-5.6-sol:high__json_schema PASS 100% 1,050 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-sol:low PASS 100% 1,030 in → 5 out (0 reasoning)
3
openai/gpt-5.6-sol:low__json_schema PASS 100% 1,088 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-sol:max PASS 100% 1,050 in → 5 out (0 reasoning)
3
openai/gpt-5.6-sol:max__json_schema PASS 100% 1,074 in → 92 out (77 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-sol:medium PASS 100% 1,018 in → 5 out (0 reasoning)
3
openai/gpt-5.6-sol:medium__json_schema PASS 100% 1,101 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-sol:none PASS 100% 1,049 in → 5 out (0 reasoning)
3
openai/gpt-5.6-sol:none__json_schema PASS 100% 1,093 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-sol:xhigh PASS 100% 1,042 in → 5 out (0 reasoning)
3
openai/gpt-5.6-sol:xhigh__json_schema PASS 100% 1,063 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-terra:high PASS 100% 1,041 in → 5 out (0 reasoning)
3
openai/gpt-5.6-terra:high__json_schema PASS 100% 1,061 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-terra:low PASS 100% 1,071 in → 5 out (0 reasoning)
3
openai/gpt-5.6-terra:low__json_schema PASS 100% 1,097 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-terra:max PASS 100% 1,047 in → 5 out (0 reasoning)
3
openai/gpt-5.6-terra:max__json_schema PASS 100% 1,079 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-terra:medium PASS 100% 1,074 in → 5 out (0 reasoning)
3
openai/gpt-5.6-terra:medium__json_schema PASS 100% 1,057 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-terra:none PASS 100% 1,073 in → 5 out (0 reasoning)
3
openai/gpt-5.6-terra:none__json_schema PASS 100% 1,073 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-5.6-terra:xhigh PASS 100% 1,052 in → 5 out (0 reasoning)
3
openai/gpt-5.6-terra:xhigh__json_schema PASS 100% 1,087 in → 13 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-oss-120b:high PASS 100% 1,138 in → 255 out (206 reasoning)
3
openai/gpt-oss-120b:high__json_schema PASS 100% 1,207 in → 329 out (311 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
openai/gpt-oss-120b:low PASS 100% 1,085 in → 27 out (17 reasoning)
3
openai/gpt-oss-120b:low__json_schema PASS 100% 1,091 in → 105 out (85 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
openai/gpt-oss-120b:medium PASS 100% 1,103 in → 59 out (41 reasoning)
3
openai/gpt-oss-120b:medium__json_schema PASS 100% 1,111 in → 99 out (72 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
openai/gpt-oss-120b:xhigh PASS 100% 1,135 in → 53 out (52 reasoning)
3
openai/gpt-oss-120b:xhigh__json_schema PASS 100% 1,076 in → 163 out (152 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
openai/gpt-oss-20b:high PASS 100% 1,123 in → 37 out (36 reasoning)
3
openai/gpt-oss-20b:high__json_schema PASS 100% 1,105 in → 476 out (327 reasoning)
3
JSON Schema Structured Output
(raw) { "count" : 3 }
openai/gpt-oss-20b:low PASS 100% 1,122 in → 17 out (4 reasoning)
3
openai/gpt-oss-20b:low__json_schema PASS 100% 1,101 in → 24 out (4 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
openai/gpt-oss-20b:medium PASS 100% 1,110 in → 79 out (58 reasoning)
3
openai/gpt-oss-20b:medium__json_schema PASS 100% 1,112 in → 68 out (51 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
openai/gpt-oss-20b:xhigh PASS 100% 1,101 in → 204 out (182 reasoning)
3
openai/gpt-oss-20b:xhigh__json_schema PASS 100% 1,076 in → 318 out (295 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-m.1:high PASS 100% 1,382 in → 201 out (197 reasoning)
3
poolside/laguna-m.1:high__json_schema PASS 100% 1,377 in → 286 out (275 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-m.1:low PASS 100% 1,377 in → 281 out (277 reasoning)
3
poolside/laguna-m.1:low__json_schema PASS 100% 1,393 in → 217 out (209 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
poolside/laguna-m.1:medium PASS 100% 1,356 in → 249 out (245 reasoning)
3
poolside/laguna-m.1:medium__json_schema PASS 100% 1,380 in → 342 out (331 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-m.1:none PASS 100% 1,395 in → 3 out (0 reasoning)
3
poolside/laguna-m.1:none__json_schema PASS 100% 1,389 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
poolside/laguna-m.1:xhigh PASS 100% 1,384 in → 424 out (420 reasoning)
3
poolside/laguna-m.1:xhigh__json_schema PASS 100% 1,388 in → 372 out (361 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-xs-2.1:high PASS 100% 1,365 in → 301 out (299 reasoning)
3
poolside/laguna-xs-2.1:high__json_schema PASS 100% 1,401 in → 264 out (252 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-xs-2.1:low PASS 100% 1,401 in → 589 out (587 reasoning)
3
poolside/laguna-xs-2.1:low__json_schema PASS 100% 1,377 in → 322 out (310 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-xs-2.1:medium PASS 100% 1,405 in → 199 out (197 reasoning)
3
poolside/laguna-xs-2.1:medium__json_schema PASS 100% 1,376 in → 321 out (310 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-xs-2.1:none PASS 100% 1,381 in → 1 out (0 reasoning)
3
poolside/laguna-xs-2.1:none__json_schema PASS 100% 1,414 in → 11 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-xs-2.1:xhigh PASS 100% 1,404 in → 294 out (292 reasoning)
3
poolside/laguna-xs-2.1:xhigh__json_schema PASS 100% 1,386 in → 441 out (430 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-xs.2:high PASS 100% 1,441 in → 114 out (110 reasoning)
3
poolside/laguna-xs.2:high__json_schema PASS 100% 1,435 in → 128 out (120 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
poolside/laguna-xs.2:low PASS 100% 1,441 in → 149 out (145 reasoning)
3
poolside/laguna-xs.2:low__json_schema PASS 100% 1,452 in → 132 out (124 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
poolside/laguna-xs.2:medium PASS 100% 1,436 in → 96 out (92 reasoning)
3
poolside/laguna-xs.2:medium__json_schema PASS 100% 1,447 in → 135 out (123 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
poolside/laguna-xs.2:none PASS 100% 1,450 in → 3 out (0 reasoning)
3
poolside/laguna-xs.2:none__json_schema PASS 100% 1,439 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
poolside/laguna-xs.2:xhigh PASS 100% 1,437 in → 361 out (357 reasoning)
3
poolside/laguna-xs.2:xhigh__json_schema PASS 100% 1,461 in → 386 out (375 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-27b:high PASS 100% 1,415 in → 150 out (133 reasoning)
3
qwen/qwen3.6-27b:high__json_schema PASS 100% 1,408 in → 184 out (163 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-27b:low PASS 100% 1,397 in → 371 out (306 reasoning)
3
qwen/qwen3.6-27b:low__json_schema PASS 100% 1,407 in → 292 out (222 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-27b:medium PASS 100% 1,379 in → 180 out (167 reasoning)
3
qwen/qwen3.6-27b:medium__json_schema PASS 100% 1,353 in → 11 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-27b:none PASS 100% 1,421 in → 2 out (0 reasoning)
3
qwen/qwen3.6-27b:none__json_schema PASS 100% 1,393 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
qwen/qwen3.6-27b:xhigh PASS 100% 1,406 in → 642 out (580 reasoning)
3
qwen/qwen3.6-27b:xhigh__json_schema PASS 100% 1,388 in → 279 out (244 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-35b-a3b:high PASS 100% 1,359 in → 208 out (202 reasoning)
3
qwen/qwen3.6-35b-a3b:high__json_schema PASS 100% 1,381 in → 346 out (275 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-35b-a3b:low PASS 100% 1,412 in → 189 out (178 reasoning)
3
qwen/qwen3.6-35b-a3b:low__json_schema PASS 100% 1,364 in → 181 out (165 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-35b-a3b:medium PASS 100% 1,386 in → 299 out (242 reasoning)
3
qwen/qwen3.6-35b-a3b:medium__json_schema PASS 100% 1,427 in → 396 out (290 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-35b-a3b:none PASS 100% 1,394 in → 2 out (0 reasoning)
3
qwen/qwen3.6-35b-a3b:none__json_schema PASS 100% 1,363 in → 11 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-35b-a3b:xhigh PASS 100% 1,405 in → 282 out (197 reasoning)
3
qwen/qwen3.6-35b-a3b:xhigh__json_schema PASS 100% 1,395 in → 168 out (149 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
qwen/qwen3.6-flash:high PASS 100% 1,384 in → 327 out (322 reasoning)
3
qwen/qwen3.6-flash:low PASS 100% 1,416 in → 290 out (285 reasoning)
3
qwen/qwen3.6-flash:medium PASS 100% 1,396 in → 393 out (388 reasoning)
3
qwen/qwen3.6-flash:none PASS 100% 1,421 in → 1 out (0 reasoning)
3
qwen/qwen3.6-flash:xhigh PASS 100% 1,380 in → 375 out (369 reasoning)
3
qwen/qwen3.7-flash:high PASS 100% 1,395 in → 301 out (296 reasoning)
3
qwen/qwen3.7-flash:low PASS 100% 1,397 in → 266 out (260 reasoning)
3
qwen/qwen3.7-flash:low__json_schema PASS 100% 1,421 in → 250 out (244 reasoning)
3
qwen/qwen3.7-flash:max PASS 100% 1,393 in → 260 out (254 reasoning)
3
qwen/qwen3.7-flash:medium PASS 100% 1,384 in → 318 out (313 reasoning)
3
qwen/qwen3.7-flash:none PASS 100% 1,402 in → 1 out (0 reasoning)
3
qwen/qwen3.7-flash:xhigh PASS 100% 1,397 in → 195 out (190 reasoning)
3
qwen/qwen3.7-max:high PASS 100% 1,415 in → 117 out (111 reasoning)
3
qwen/qwen3.7-max:low PASS 100% 1,399 in → 159 out (153 reasoning)
3
qwen/qwen3.7-max:medium PASS 100% 1,385 in → 284 out (278 reasoning)
3
qwen/qwen3.7-max:none PASS 100% 1,388 in → 1 out (0 reasoning)
3
qwen/qwen3.7-max:xhigh PASS 100% 1,394 in → 115 out (109 reasoning)
3
qwen/qwen3.7-plus:high PASS 100% 1,377 in → 123 out (117 reasoning)
3
qwen/qwen3.7-plus:low PASS 100% 1,397 in → 94 out (88 reasoning)
3
qwen/qwen3.7-plus:medium PASS 100% 1,391 in → 116 out (110 reasoning)
3
qwen/qwen3.7-plus:none PASS 100% 1,392 in → 1 out (0 reasoning)
3
qwen/qwen3.7-plus:xhigh PASS 100% 1,408 in → 163 out (157 reasoning)
3
tencent/hy3:high PASS 100% 1,049 in → 94 out (91 reasoning)
3
tencent/hy3:high__json_schema PASS 100% 1,068 in → 206 out (173 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
tencent/hy3:low PASS 100% 1,091 in → 108 out (105 reasoning)
3
tencent/hy3:low__json_schema PASS 100% 1,104 in → 105 out (93 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
tencent/hy3:medium PASS 100% 1,064 in → 125 out (122 reasoning)
3
tencent/hy3:medium__json_schema PASS 100% 1,080 in → 124 out (91 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
tencent/hy3:none PASS 100% 1,086 in → 2 out (0 reasoning)
3
tencent/hy3:none__json_schema PASS 100% 1,114 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
tencent/hy3:xhigh PASS 100% 1,079 in → 111 out (108 reasoning)
3
tencent/hy3:xhigh__json_schema PASS 100% 1,055 in → 129 out (105 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling-small:high PASS 100% 1,041 in → 25 out (18 reasoning)
3
thinkingmachines/inkling-small:high__json_schema PASS 100% 1,085 in → 30 out (19 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
thinkingmachines/inkling-small:low PASS 100% 1,053 in → 26 out (19 reasoning)
3
thinkingmachines/inkling-small:low__json_schema PASS 100% 1,083 in → 29 out (19 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
thinkingmachines/inkling-small:max PASS 100% 1,040 in → 26 out (18 reasoning)
3
thinkingmachines/inkling-small:max__json_schema PASS 100% 1,071 in → 30 out (18 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling-small:medium PASS 100% 1,050 in → 26 out (18 reasoning)
3
thinkingmachines/inkling-small:medium__json_schema PASS 100% 1,057 in → 19 out (7 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling-small:none PASS 100% 1,061 in → 4 out (0 reasoning)
3<|end_message|>
thinkingmachines/inkling-small:xhigh PASS 100% 1,067 in → 79 out (72 reasoning)
3
thinkingmachines/inkling-small:xhigh__json_schema PASS 100% 1,074 in → 104 out (90 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling:high PASS 100% 1,081 in → 58 out (36 reasoning)
3
thinkingmachines/inkling:high__json_schema PASS 100% 1,032 in → 62 out (50 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling:low PASS 100% 1,055 in → 37 out (19 reasoning)
3
thinkingmachines/inkling:low__json_schema PASS 100% 1,058 in → 24 out (10 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling:max PASS 100% 1,023 in → 58 out (50 reasoning)
3
thinkingmachines/inkling:medium PASS 100% 1,059 in → 85 out (77 reasoning)
3
thinkingmachines/inkling:medium__json_schema PASS 100% 1,056 in → 36 out (22 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling:none PASS 100% 1,061 in → 5 out (0 reasoning)
3
thinkingmachines/inkling:none__json_schema PASS 100% 1,058 in → 12 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
thinkingmachines/inkling:xhigh PASS 100% 1,067 in → 62 out (50 reasoning)
3
thinkingmachines/inkling:xhigh__json_schema PASS 100% 1,044 in → 63 out (51 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
x-ai/grok-4.3:high PASS 100% 1,180 in → 141 out (140 reasoning)
3
x-ai/grok-4.3:high__json_schema PASS 100% 1,250 in → 380 out (375 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.3:low__json_schema PASS 100% 1,277 in → 193 out (188 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.3:max PASS 100% 1,212 in → 296 out (295 reasoning)
3
x-ai/grok-4.3:max__json_schema PASS 100% 1,242 in → 241 out (236 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.3:medium__json_schema PASS 100% 1,258 in → 387 out (382 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.3:none PASS 100% 1,213 in → 1 out (0 reasoning)
3
x-ai/grok-4.3:none__json_schema PASS 100% 1,277 in → 5 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.3:xhigh PASS 100% 1,189 in → 215 out (214 reasoning)
3
x-ai/grok-4.3:xhigh__json_schema PASS 100% 1,326 in → 257 out (252 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.5:high PASS 100% 1,279 in → 98 out (97 reasoning)
3
x-ai/grok-4.5:high__json_schema PASS 100% 1,345 in → 291 out (286 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.5:low PASS 100% 1,297 in → 88 out (87 reasoning)
3
x-ai/grok-4.5:low__json_schema PASS 100% 1,328 in → 28 out (22 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
x-ai/grok-4.5:max PASS 100% 1,304 in → 101 out (100 reasoning)
3
x-ai/grok-4.5:max__json_schema PASS 100% 1,371 in → 200 out (194 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
x-ai/grok-4.5:medium PASS 100% 1,280 in → 106 out (105 reasoning)
3
x-ai/grok-4.5:medium__json_schema PASS 100% 1,357 in → 202 out (197 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
x-ai/grok-4.5:xhigh PASS 100% 1,287 in → 101 out (100 reasoning)
3
x-ai/grok-4.5:xhigh__json_schema PASS 100% 1,344 in → 241 out (236 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
z-ai/glm-4.7-flash:high PASS 100% 1,129 in → 523 out (458 reasoning)
3
z-ai/glm-4.7-flash:low PASS 100% 1,139 in → 512 out (424 reasoning)
3
z-ai/glm-4.7-flash:low__json_schema PASS 100% 1,090 in → 597 out (461 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
z-ai/glm-4.7-flash:medium PASS 100% 1,100 in → 654 out (528 reasoning)
3
z-ai/glm-4.7-flash:none PASS 100% 1,121 in → 2 out (0 reasoning)
3
z-ai/glm-4.7-flash:none__json_schema PASS 100% 1,123 in → 8 out (0 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
z-ai/glm-4.7-flash:xhigh PASS 100% 1,130 in → 380 out (341 reasoning)
3
z-ai/glm-4.7-flash:xhigh__json_schema PASS 100% 1,138 in → 494 out (439 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
z-ai/glm-5.2:high PASS 100% 1,140 in → 96 out (95 reasoning)
3
z-ai/glm-5.2:high__json_schema PASS 100% 1,131 in → 90 out (81 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
z-ai/glm-5.2:low PASS 100% 1,134 in → 86 out (83 reasoning)
3
z-ai/glm-5.2:low__json_schema PASS 100% 1,145 in → 70 out (51 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
z-ai/glm-5.2:medium PASS 100% 1,137 in → 82 out (80 reasoning)
3
z-ai/glm-5.2:medium__json_schema PASS 100% 1,118 in → 90 out (76 reasoning)
3
JSON Schema Structured Output
(raw) { "count": 3 }
z-ai/glm-5.2:none PASS 100% 1,120 in → 2 out (0 reasoning)
3
z-ai/glm-5.2:none__json_schema PASS 100% 1,114 in → 7 out (0 reasoning)
3
JSON Schema Structured Output
(raw) {"count": 3}
z-ai/glm-5.2:xhigh PASS 100% 1,132 in → 86 out (83 reasoning)
3
z-ai/glm-5.2:xhigh__json_schema PASS 100% 1,297 in → 112 out (105 reasoning)
3
JSON Schema Structured Output
(raw) {"count":3}
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid structured output. Output: 3
JSON Schema Structured Output
Structured Output Error
Structured output schema validation failed: $ must be of type object
Failure: Structured output schema validation failed: $ must be of type object
Invalid structured output. Output: 3
JSON Schema Structured Output
Structured Output Error
Structured output schema validation failed: $ must be of type object
Failure: Structured output schema validation failed: $ must be of type object
Invalid structured output. Output: 3
JSON Schema Structured Output
Structured Output Error
Structured output schema validation failed: $ must be of type object
Failure: Structured output schema validation failed: $ must be of type object
minimax/minimax-m2.5:high FAIL 0% 1,072 in → 148 out (149 reasoning)
(empty output)
Failure: Expected numeric answer '3', got ''
Invalid structured output. Output: 3
JSON Schema Structured Output
Structured Output Error
Structured output schema validation failed: $ must be of type object
Failure: Structured output schema validation failed: $ must be of type object
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-65e59bae-8e57-9780-9001-fd101ddd5c8b","request_id":"65e59bae-8e57-9780-9001-fd101ddd5c8b"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-ff90a3ae-cc36-9c82-8ef9-d9e29b0eba0e","request_id":"ff90a3ae-cc36-9c82-8ef9-d9e29b0eba0e"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-7aa0696c-3584-9d11-8e6d-159db5446f03","request_id":"7aa0696c-3584-9d11-8e6d-159db5446f03"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-9ca04dd1-ec3a-9603-942c-00cb5aae3523","request_id":"9ca04dd1-ec3a-9603-942c-00cb5aae3523"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-ff9c4490-d1a2-940d-bfe8-5f1145ce7195","request_id":"ff9c4490-d1a2-940d-bfe8-5f1145ce7195"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-00bf8f2b-02e3-9317-8f20-d6da64793bdd"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-4cdba99b-e258-9ec2-a7df-f7f706106e5a"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-d9b49193-9947-9ef6-827c-b6067d624482"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-66b30133-5d88-952f-a133-ab0575eedb4c"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-92431713-719b-9c4c-80b0-8cdcbaae0779"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-9946613e-bd96-9412-8e7a-4b4f281e4e81","request_id":"9946613e-bd96-9412-8e7a-4b4f281e4e81"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-1101fb81-9e73-910b-b2b2-0e47e6f13df1","request_id":"1101fb81-9e73-910b-b2b2-0e47e6f13df1"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-edb5052e-792c-9f86-bd9a-c7b3027f698c","request_id":"edb5052e-792c-9f86-bd9a-c7b3027f698c"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-71c0a415-1a6a-9a0e-b23a-9662049d6eb5","request_id":"71c0a415-1a6a-9a0e-b23a-9662049d6eb5"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-9c67fceb-3139-921a-a147-b2e3349a0cef","request_id":"9c67fceb-3139-921a-a147-b2e3349a0cef"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-61cbadad-9713-9696-a693-1d8a669dbadd","request_id":"61cbadad-9713-9696-a693-1d8a669dbadd"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-f5b2b315-c79d-9e12-bc80-db0426779619","request_id":"f5b2b315-c79d-9e12-bc80-db0426779619"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-1af7cc10-ccab-9958-a010-116dbede3bd0","request_id":"1af7cc10-ccab-9958-a010-116dbede3bd0"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-2296d968-504e-97fe-8617-6e7c9bffe2c9","request_id":"2296d968-504e-97fe-8617-6e7c9bffe2c9"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-c84208f4-fba1-9f6f-8364-444fa16bfcdc","request_id":"c84208f4-fba1-9f6f-8364-444fa16bfcdc"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
Invalid JSON. Output: 3{ "count": 3 }
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Extra data: line 1 column 2 (char 1)
Failure: Failed to parse structured JSON response: Extra data: line 1 column 2 (char 1)
Invalid structured output. Output: 3
JSON Schema Structured Output
Structured Output Error
Structured output schema validation failed: $ must be of type object
Failure: Structured output schema validation failed: $ must be of type object
x-ai/grok-4.3:low FAIL 0% 1,225 in → 274 out (238 reasoning)
3 (The user explicitly requested "Output ONLY the number, nothing else", but per instructions I must also include the tag; the answer value itself is solely the number 3.)
Failure: Expected numeric answer '3', got '3\n\n\n(The user explicitly requested "Output ONLY the number, nothing else", but per instructions I must also include the tag; the answer value itself is solely the number 3.)'
x-ai/grok-4.3:medium FAIL 0% 1,198 in → 388 out (381 reasoning)
3 \confidence{90}
Failure: Expected numeric answer '3', got '3\n\n\n\\confidence{90}'
Invalid structured output. Output: 3
JSON Schema Structured Output
Structured Output Error
Structured output schema validation failed: $ must be of type object
Failure: Structured output schema validation failed: $ must be of type object
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)