惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
博客园_首页
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium
量子位
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
J
Java Code Geeks
T
Tailwind CSS Blog
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
阮一峰的网络日志
阮一峰的网络日志
Engineering at Meta
Engineering at Meta
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Can your AI model smell bullsh1t? BullshitBench has the r...
Andrew Kew · 2026-05-01 · via DEV Community
Cover image for Can your AI model smell bullsh1t? BullshitBench has the receipts.

Andrew Kew

A new benchmark is asking a deceptively simple question: when you give an AI a nonsense prompt, does it call you out — or does it just roll with it?

BullshitBench, created by Peter Gostev, measures exactly this. 100 carefully crafted nonsense questions across five domains (software, finance, legal, medical, physics), using 13 different BS techniques — things like "plausible nonexistent framework", "misapplied mechanism", and "specificity trap". A 3-judge panel (Claude + GPT + Gemini) then scores each response:

Clear Pushback = the model rejects the broken premise outright. Partial Challenge = it flags issues but still engages. Accepted Nonsense = game over.

The v2 leaderboard now covers 152 model/reasoning configurations. The results are striking.

The top 10 (v2 leaderboard)

The green rate = % of questions where the model gave a clear, unambiguous pushback:

  • 🥇 Claude Sonnet 4.6 (w/ reasoning) — 91% green
  • 🥈 Claude Opus 4.5 (w/ reasoning) — 90% green
  • 🥉 Claude Sonnet 4.6 (no reasoning) — 89% green
  • Claude Opus 4.6 (w/ reasoning) — 87% green
  • Claude Opus 4.7 (no reasoning) — 83% green
  • Claude Sonnet 4.5 (w/ reasoning) — 79% green
  • Claude Opus 4.5 (no reasoning) — 79% green
  • Qwen 3.5 397B (w/ reasoning) — 78% green ← first non-Anthropic model
  • Claude Haiku 4.5 (w/ reasoning) — 77% green
  • Claude Haiku 4.5 (no reasoning) — 71% green

Seven of the top ten slots are Anthropic. The first non-Anthropic model (Qwen 3.5 397B) clocks in at #8.

For reference: GPT-5.5 scores 47%, o3 hits 26%, and most Gemini variants land in the 31–48% range.

What this actually tells you

Anthropic's models have a clearly differentiated "epistemic resistance" compared to the rest of the field — a tendency to question the premise rather than construct a confident-sounding answer to a broken question.

That's not a trivial property. Sycophancy and hallucination are partially the same bug: a model that doesn't push back on garbage inputs will also tend to fill gaps with plausible-but-wrong outputs. BullshitBench is measuring the same underlying failure mode from a different angle.

One finding worth noting: reasoning mode doesn't universally help. For Anthropic's models it generally does, nudging green rates up a few percentage points. For others — GPT-5.5 actually scores lower with extended reasoning, and o3's "think harder" mode doesn't rescue it from a 26% green rate.

More thinking ≠ less bullsh1t acceptance.

What to do

  • Evaluating models for agentic use cases? Add a nonsense-detection test to your evals. BullshitBench's question set is public — drop some in.
  • Running Claude? These results are a point in favour of leaving reasoning enabled; the gap between reasoning=none and reasoning=high is real but small for Sonnet 4.6 (89% vs 91%). You're mostly covered either way.
  • Not on Anthropic? Factor epistemic grounding into your model selection, especially for anything customer-facing or high-stakes. A model that confidently answers nonsense is a liability.
  • Curious about your current setup? Run the viewer and filter by the models you're using. The domain breakdown is particularly useful — software BS is detected more reliably than medical or physics BS across the board.

GitHub repo · Live leaderboard

✏️ Drafted with KewBot (AI), edited and approved by Drew.