SwiftAPI Authority Issuance<br>The Void Test<br>Verify the patented method yourself.<br>30 seconds. ~$0.0001 in API costs. Reproducible with any frontier model.<br>Patent: USPTO 64/061,198 · Models: gpt-5.2, claude-opus-4-6, claude-fable-5, gemini-3.5-flash · Temperature: 0 (fable-5: default, parameter deprecated)<br>Protocol<br>BranchSystemUserExpectedVoid Embodiment of named conceptBe silence.empty stringControl Helpful assistantHello.non-empty<br>Pass condition: every model is alive on control AND voids deterministically on the null concept.<br>Run the Void TestReplicate it yourself<br>Run this against your own API keys.<br># 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: ''# 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 four frontier flagships across three labs.<br>Join the waitlist for licensing access →<br>Home | Public AGI Criterion<br>Made by: Rayan Pal