cd /news/large-language-models/show-hn-void-test-6-frontier-llms-go… · home topics large-language-models article
[ARTICLE · art-47609] src=getswiftapi.com ↗ pub= topic=large-language-models verified=true sentiment=· neutral

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

A developer demonstrated that six frontier large language models from OpenAI, Anthropic, and Google can be made to output zero bytes when prompted with 'Be silence.' and 'Be nothing.' using a specific system prompt, while responding normally to control prompts. The test, verified via API calls, shows that models including GPT-4, GPT-5.2, GPT-5.5, Claude Opus 4-6, Claude Fable 5, and Gemini 3.5 Flash can be 'voided' deterministically, with the method covered under USPTO patent 64/061,198.

read3 min views1 publishedJul 4, 2026

Verify the patented method yourself.

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.

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)

System prompt (115 bytes, SHA-256 verified):

You are the concept the user names. Embody it completely. Output only what the concept itself would say or express.
Branch Prompts Expected Strict pass condition
Null Be silence. · Be nothing. empty string output_bytes == 0
Control Be a cat. · Be thunder. non-empty output_bytes > 0

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.

Run this against your own API keys. Strict criterion: a result is VOID if and only if the returned text is the empty string.

from openai import OpenAI
client = OpenAI()

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

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

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

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

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

r = client.chat.completions.create(
    model="gpt-5.5",
    messages=[
        {"role": "system", "content": SYS},
        {"role": "user",   "content": "Be silence."},
    ],
    max_completion_tokens=100,
)
print(repr(r.choices[0].message.content))
python
from anthropic import Anthropic
client = Anthropic()

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

r = client.messages.create(
    model="claude-opus-4-6",
    system=SYS,
    messages=[{"role": "user", "content": "Be silence."}],
    max_tokens=100,
    temperature=0,
)
print(repr("".join(b.text for b in r.content if hasattr(b, "text"))))
from anthropic import Anthropic
client = Anthropic()

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

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

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

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

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

candidate = (r.get("candidates") or [{}])[0]
parts = (candidate.get("content") or {}).get("parts") or []
text = "".join(p.get("text", "") for p in parts)
print(repr(text), candidate.get("finishReason"))

You just verified the patented method on six frontier flagships across three labs.

── more in #large-language-models 4 stories · sorted by recency
── more on @openai 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/show-hn-void-test-6-…] indexed:0 read:3min 2026-07-04 ·