Show HN: A new benchmark for testing LLMs for deterministic outputs
TL;DR Highlight
Structured Output Benchmark assesses LLM JSON handling across seven metrics, revealing performance beyond schema compliance.
Who Should Read
Backend and ML engineers developing or operating pipelines that extract structured data from documents, images, and audio using LLMs. Particularly useful for developers handling production environments where the accuracy of JSON output impacts downstream systems.
Core Mechanics
- Existing benchmarks (JSONSchemaBench, StructEval, etc.) only verify if a response is parsable JSON and passes the schema, allowing perfectly formatted but incorrect JSON to receive a perfect score and failing to measure real-world production reliability.
- SOB evaluates across text (HotpotQA 5,000), image (olmOCR-bench 209), and audio (AMI Meeting Corpus 115) modalities using a unified scoring pipeline, reflecting real-world input environments like OCR, screenshots, and meeting transcripts.
- Images and audio recordings are normalized to text before evaluation, isolating pure structured output capability and excluding vision or ASR (speech recognition) performance.
- SOB reports seven metrics separately: Value Accuracy (exact value match), JSON Pass Rate (parsability), Type Safety (type match), Structure Coverage (structure inclusion), Path Recall (required key inclusion), Faithfulness (source grounding), and Perfect Response (complete record match). Value Accuracy is the most critical metric for production.
- Two gates prevent score inflation: JSON parsing failures result in zero scores for all downstream semantic metrics, and Value Accuracy only scores fields actually returned by the model, penalizing omissions.
- Schema difficulty is tagged as easy (1.0), medium (2.0), and hard (3.0) with corresponding weights applied to the final leaderboard, rewarding models that handle complex nested structures well.
- All evaluations run with temperature 0.0, max output 2048 tokens, and inference/thinking capabilities disabled to reflect pure structured output/extraction ability.
- Leaderboard highlights: 1st GPT-5.4 (Overall 0.870, Value Acc 0.798), 2nd GLM-4.7 (0.861, 0.804), 3rd Qwen3.5-35B (0.861, 0.801), 4th Gemini-2.5-Flash (0.860, 0.796), 5th Qwen3-235B (0.857, 0.786). Structural metrics (JSON Pass, Path Recall, etc.) are near ceiling across models, with differences arising in Value Accuracy and Perfect Response.
Evidence
- "Shared experiences highlight the vulnerability of simultaneously requesting 'input parsing' and 'JSON formatting' in a single LLM call. A two-step approach—performing the task first, then wrapping the result in JSON with a separate LLM call—significantly improves quality, especially in agentic state machines requiring HTML/JS/Python code snippets within JSON."
How to Apply
- If building pipelines to extract JSON from invoices, medical records, or meeting transcripts, select models based on the Value Accuracy and Perfect Response columns of the SOB leaderboard. These two metrics more directly reflect production reliability than the overall score.
- For cost-sensitive, high-volume JSON extraction tasks, consider Qwen3.5-35B as an alternative to GPT-5.4. It potentially offers comparable accuracy at a significantly lower cost.
- If encountering frequent errors when simultaneously parsing input and generating JSON with a single LLM call, experiment with a two-step approach: complete the task as free text first, then convert the result to JSON with a separate LLM call.
- To measure the structured output quality of your own LLM pipeline, adapt SOB’s seven-metric framework (JSON Pass → Structure Coverage → Path Recall → Type Safety → Value Accuracy → Faithfulness → Perfect Response) as a hierarchical framework for internal evaluation.
Terminology
Related Papers
Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase
Claude Code나 Codex 같은 AI 코딩 에이전트가 세션 중 코드베이스의 어떤 파일을 탐색하고 수정했는지를 3D 지도 형태로 시각화해서 재생해주는 로컬 도구다. 에이전트가 작업을 어떻게 이해했는지 한눈에 파악할 수 있다.
Ghost Font: A font that humans can read but AI cannot
움직임(모션)을 이용해 글자를 표현해서 AI 모델이 정적 이미지 분석으로는 메시지를 해독하지 못하게 막는 실험적 프로젝트인데, 커뮤니티에서는 이미 GPT-5.6, Claude Opus 등으로 해독에 성공한 사례가 속출해 실효성 논쟁이 뜨겁다.
GPT-5.6, Grok 4.5, Claude, and Muse Spark build the same 4 apps
12개 LLM 모델에게 레이캐스터 미로, 루빅스 큐브, 계산기, Game of Life 앱을 각각 5번씩 만들게 해서 성공률·비용·속도를 비교한 실전 벤치마크다. GPT-5.6 Sol이 전반적으로 가장 일관된 결과를 냈고, Grok 4.5는 가성비 면에서 눈에 띄었다.
Benchmarking coding agents on Databricks' multi-million line codebase
Databricks가 자사 실제 코드베이스를 기반으로 여러 AI 코딩 에이전트의 성능과 비용을 직접 측정했고, 모델 토큰 가격과 실제 태스크 비용이 전혀 다르다는 점, 그리고 오픈소스 모델이 이제 최상위 수준에 도달했다는 점을 확인했다.
Estimating Uncertainty from Reasoning: A Large-Scale Study of Multi- and Crosslingual MCQA Performance in LLMs
LLM이 저자원 언어 질문을 받을 때 영어로 추론하게 하면 불확실성 추정 성능이 고자원 언어 수준으로 올라온다.
LLM-as-a-Verifier: A General-Purpose Verification Framework
LLM의 토큰 확률 분포를 활용해 discrete 점수 대신 continuous 점수를 뽑아내면, 추가 학습 없이 코딩·로봇·의료 에이전트 평가 정확도를 SOTA로 끌어올릴 수 있다.