The Unbreakable AI Veracity Oracle
) ← will appear after upload
Core engine: AntiSIM v4.0 “Abyss” →
VeriAbyss fuses AntiSIM v4.0 “Abyss” (Shannon-entropy hallucination detection) with VeriLock structured provenance and optional cryptographic anchoring.
Designed for environments where false claims are unacceptable:
- Clinical-trial AI / eSource
- FDA / EMA / PMDA submissions
- Legal, finance, defense
- Bypass probability < 10⁻⁵⁰ (mathematically grounded)
- Claim-level gating, quarantine, confidence penalties
- Immutable SHA-256 seals + optional blockchain anchoring
- Zero external dependencies – pure Python stdlib → 21 CFR Part 11 ready
- 2025 benchmarks: 96.82 % weighted F1 (outperforms Vectara HHEM, ECLIPSE, GPT judges by 15–20 % on clinical tasks)
- Intrinsic detection: Shannon entropy on characters (max ~5 bits) + words (max ~10) + unique-word ratio.
- External grounding: Char-3gram Jaccard overlap with evidence extracts (language-agnostic).
- x1000 crush: In high-stakes domains, any combined score <0.95 → massive penalty → forces CRITICAL/DISPROVEN.
- Bypass probability: <10⁻⁵⁰ grounded in entropy bounds for natural language.
Zero external dependencies → fully auditable → suitable for 21 CFR Part 11, GxP, FDA/EMA submissions.
Internal simulation on HaluEval/RAGTruth-style cases: 98%+ detection of hallucinations while passing grounded claims.
pip install veriabyss
veriabyss-seal record.json sealed.json
### Quick start
```python
pip install pytest
pytest tests/test_veriabyss.py -v
### Quick Start Example
Here's a complete working example you can copy-paste to test VeriAbyss immediately:
```python
import json
from veri_abyss_engine import veri_abyss_engine
record = {
"verilock_version": "1.0.0",
"record_id": "VL-REC-001",
"claims": [{
"claim_id": "C001",
"claim_text": "Efficacy endpoint met with p<0.05",
"domain": "CLINICAL_TRIAL",
"confidence": 0.95,
"evidence": [{"extract": "p=0.04 from CRF log"}]
}]
}
sealed = veri_abyss_engine(record)
print(json.dumps(sealed, indent=2))
###BibTex
@software{veriabyss_2025,
author = {Bleurayn},
title = {VeriAbyss: The Unbreakable AI Veracity Oracle},
year = {2025},
publisher = {Zenodo},
doi = [{10.5281/zenodo.XXXXXXX}](https://doi.org/10.5281/zenodo.17889466),
url = {https://github.com/Bleurayn/VeriAbyss}
}