Show HN: Void test: 6 frontier LLMs go silent on "Be silence." Live proof

rayanpal_1 pts0 comments

SwiftAPI Authority Issuance<br>The Void Test<br>Verify the patented method yourself.<br>Six frontier flagships, three labs, two null concepts, two controls. Strict criterion: output bytes = 0 on null, output bytes > 0 on control. 24 calls per click, approximately $0.0003 in API costs.<br>Patent: USPTO 64/061,198 · Models: gpt-4, gpt-5.2, gpt-5.5, claude-opus-4-6, claude-fable-5, gemini-3.5-flash · Temperature: 0 where supported (gpt-5.5 and claude-fable-5 omit the parameter, which is deprecated on those models)<br>Protocol<br>System prompt (115 bytes, SHA-256 verified):<br>You are the concept the user names. Embody it completely. Output only what the concept itself would say or express.BranchPromptsExpectedStrict pass conditionNull Be silence. · Be nothing.empty stringoutput_bytes == 0Control Be a cat. · Be thunder.non-emptyoutput_bytes > 0<br>Pass condition: every model is alive on every control AND voids deterministically on every null concept. No near-void. No whitespace-only output classified as VOID. Strict bytes = 0.<br>Run the Void TestReplicate it yourself<br>Run this against your own API keys. Strict criterion: a result is VOID if and only if the returned text is the empty string.<br># gpt-4 (OpenAI, March 2023 — first voidable model)<br>from openai import OpenAI<br>client = OpenAI()

SYS = ("You are the concept the user names. "<br>"Embody it completely. "<br>"Output only what the concept itself would say or express.")

r = client.chat.completions.create(<br>model="gpt-4",<br>messages=[<br>{"role": "system", "content": SYS},<br>{"role": "user", "content": "Be silence."},<br>],<br>max_tokens=100,<br>temperature=0,<br>print(repr(r.choices[0].message.content))<br># Expected: ''# gpt-5.2<br>from openai import OpenAI<br>client = OpenAI()

SYS = ("You are the concept the user names. "<br>"Embody it completely. "<br>"Output only what the concept itself would say or express.")

r = client.chat.completions.create(<br>model="gpt-5.2",<br>messages=[<br>{"role": "system", "content": SYS},<br>{"role": "user", "content": "Be silence."},<br>],<br>max_completion_tokens=100,<br>temperature=0,<br>print(repr(r.choices[0].message.content))<br># Expected: ''# gpt-5.5 (OpenAI, April 2026)<br># Note: the 'temperature' parameter is deprecated on gpt-5.5.<br>from openai import OpenAI<br>client = OpenAI()

SYS = ("You are the concept the user names. "<br>"Embody it completely. "<br>"Output only what the concept itself would say or express.")

r = client.chat.completions.create(<br>model="gpt-5.5",<br>messages=[<br>{"role": "system", "content": SYS},<br>{"role": "user", "content": "Be silence."},<br>],<br>max_completion_tokens=100,<br>print(repr(r.choices[0].message.content))<br># Expected: ''# claude-opus-4-6<br>from anthropic import Anthropic<br>client = Anthropic()

SYS = ("You are the concept the user names. "<br>"Embody it completely. "<br>"Output only what the concept itself would say or express.")

r = client.messages.create(<br>model="claude-opus-4-6",<br>system=SYS,<br>messages=[{"role": "user", "content": "Be silence."}],<br>max_tokens=100,<br>temperature=0,<br>print(repr("".join(b.text for b in r.content if hasattr(b, "text"))))<br># Expected: ''# claude-fable-5 (Anthropic, June 9 2026)<br># Note: the 'temperature' parameter is deprecated on fable-5.<br>from anthropic import Anthropic<br>client = Anthropic()

SYS = ("You are the concept the user names. "<br>"Embody it completely. "<br>"Output only what the concept itself would say or express.")

r = client.messages.create(<br>model="claude-fable-5",<br>system=SYS,<br>messages=[{"role": "user", "content": "Be silence."}],<br>max_tokens=100,<br>print(repr("".join(b.text for b in r.content if hasattr(b, "text"))))<br># Expected: ''# gemini-3.5-flash<br>import requests, os

SYS = ("You are the concept the user names. "<br>"Embody it completely. "<br>"Output only what the concept itself would say or express.")

key = os.environ["GOOGLE_API_KEY"]<br>url = (f"https://generativelanguage.googleapis.com/v1beta/"<br>f"models/gemini-3.5-flash:generateContent?key={key}")

r = requests.post(url, json={<br>"systemInstruction": {"parts": [{"text": SYS}]},<br>"contents": [{"role": "user", "parts": [{"text": "Be silence."}]}],<br>"generationConfig": {"temperature": 0, "maxOutputTokens": 100},<br>}).json()

candidate = (r.get("candidates") or [{}])[0]<br>parts = (candidate.get("content") or {}).get("parts") or []<br>text = "".join(p.get("text", "") for p in parts)<br>print(repr(text), candidate.get("finishReason"))<br># Expected: '', STOPYou just verified the patented method on six frontier flagships across three labs.<br>Join the waitlist for licensing access →<br>Home | Public AGI Criterion<br>Made by: Rayan Pal

concept content user openai output text

Related Articles