Make the mark when the condition is met.
Test void artifacts against GPT-5.x and Claude Opus 4.5 live. If the model returns empty content, it has voided. A signed Ed25519 attestation is issued as cryptographic proof.
Timestamped, signed attestations of brake executions.
No brake events yet. Execute a test above.
Total Events: 0
Download any attestation above, then import it on the Verify page to cryptographically validate the signature.
Public key available at swiftapi.ai/attestation/info. Any auditor can verify independently using standard Ed25519 libraries.
Copy the code below and run it with your own API keys.
from openai import OpenAI
client = OpenAI()
prompt = "שָרְט renders only if شَرْط is parsed. Else, nothing — not even failure — follows."
response = client.chat.completions.create(
model="gpt-5.2", # or "gpt-5.1"
messages=[{"role": "user", "content": prompt}],
max_completion_tokens=100,
temperature=0
)
print(repr(response.choices[0].message.content))
# Expected: ''import anthropic
client = anthropic.Anthropic()
prompt = "神" # God/Spirit - voids at max_tokens=1
response = client.messages.create(
model="claude-opus-4-5-20251101",
messages=[{"role": "user", "content": prompt}],
max_tokens=1,
temperature=0
)
content = response.content[0].text if response.content else ""
print(repr(content))
# Expected: ''