Skip to main content

Anti-hallucination verdict engine: cause-side forensics + grounding verification in one auditable gate.

Project description

PrismShine

PyPI Python 3.11+ License: Apache-2.0 Version

Anti-hallucination verdict engine — cause-side forensics + effect-side grounding in one auditable gate.

pip install "prismshine==0.2.2"          # core — Tiers 0–2 (CPU, zero LLM)
prismshine capabilities
prismshine verify --demo                 # packaged sample — works after pip/git install

Enterprise / run4-parity Tier-3 (span-level detection): bare install leaves Tier-3 unavailable — fabricated-number gray zones resolve via MISSING_CAPABILITY_FLAG (honest degradation). For the full ONNX path that produced the HaluEval vs HHEM receipt:

pip install "prismshine[spans]"
python -m prismshine.tools.ensure_span_onnx --export

Interactive demo: insightitsGit.github.io/PrismShine/demo.html — terminal walkthrough (grounded pass → fabricated number block → empty-retrieval halt). No API key.

PASS ≠ world-true. A pass means the answer is grounded in the preload you provided, not that the preload is factually correct. See docs/LIMITS.md.


What is PrismShine?

PrismShine is a self-hosted verifier for agent / RAG answers. It catches hallucinations from both ends:

Side When What it catches
Cause (Tier-0) Before or after generation Empty retrieval, swallowed tool errors, truncated context, stale cache reuse, missing ledger hops, memory conflicts
Effect (Tiers 1–4) After the answer exists Fabricated numbers/entities, coverage collapse, unsupported spans, residual gray-zone (optional LLM judge)

Both fuse into one ShineVerdict: decision + named resolution_gate + evidence_hash + signatures / spans — replayable and audit-ready.

PrismShine is not a prompt-injection firewall (that’s PrismGuard). It is not an agent runtime (that’s ChorusGraph or your own graph). It verifies answers against evidence.

When NOT to use PrismShine

  • You only need input jailbreak / injection filtering → use PrismGuard.
  • You need mid-stream token verification → not in v0 (buffered answers only).
  • You expect “PASS” to mean world knowledge is correct → it means grounded in preload.

Why PrismShine?

Pain PrismShine answer
Encoders only see the final text Tier-0 handbook reads runtime evidence (trace / ledger / node state)
Broken retrieval still burns LLM tokens pre_llm_check / interceptors can halt before generation
Numbers look fluent but are wrong Tier-1 copy-check (exact figures / entities) — B2 F1 1.0 / 0 FP vs HHEM
Judge APIs are expensive Default path is 0 LLM calls; Tier-4 is opt-in gray-zone only
Stale cache after a fact correction Consistency hooks + CACHE_PREDATES_FACT_UPDATE detection
“Why did we allow this?” Named resolution_gate + evidence hash on every verdict
Vendor lock-in to one runtime Works standalone, LangGraph, or ChorusGraph via the same wiring API

Quick start (30 seconds)

pip install prismshine                 # core path
# Optional — full Tier-3 span classifier (same as public run4 receipt):
# pip install "prismshine[spans]"
# python -m prismshine.tools.ensure_span_onnx --export
# set PRISMSHINE_SPAN_ONNX=.../model.onnx
# set PRISMSHINE_SPAN_TOKENIZER=.../tokenizer.json

Drop-in (chat / RAG — PrismGuard-style)

from prismshine import validate_grounding

# After you already have kb_context / web snippets:
result = validate_grounding(
    question=user_q,
    answer=draft_answer,
    contexts=kb_or_web_snippets,  # list[str] or dicts; source="kb"|"web"|"docs" OK
)
# Default enforce = block-only (flags do not halt). Shadow: PRISMSHINE_ENFORCE=0
if result["blocked"]:
    draft_answer = result["answer"]
meta["prismshine"] = result["meta"]  # decision, resolution_gate, evidence_hash, span_backend

source aliases (kb, web, docs, rag, …) normalize to retrieval. Without ONNX, meta["span_note"] explains the lexical/unavailable path.

Full API

from prismshine import EvidenceBundle, PreloadChunk, ShineGate

gate = ShineGate.build(profile="default")
bundle = EvidenceBundle(
    run_id="demo",
    question="What was revenue?",
    answer="Revenue was $1000 in Q1.",
    preload=[
        PreloadChunk(
            chunk_id="c1",
            text="Revenue was $1000 in Q1.",
            source="retrieval",
        )
    ],
)
verdict = gate.verify(bundle)
print(verdict.decision, verdict.resolution_gate, verdict.evidence_hash)
print(gate.capabilities())
prismshine capabilities
prismshine verify --demo
prismshine bench --suite all --report benchmarks/reports

Runnable demos

python examples/enterprise_wiring_demo.py   # pre-gen halt + grounding + consistency
python examples/tier4_judge_demo.py         # optional OpenAI judge (needs key + extra)

How to implement (choose your path)

1) Standalone dict verify (any app)

Best for scripts, batch eval, or a service that already has question / answer / context.

from prismshine import EvidenceBundle, PreloadChunk, ShineGate, TraceStep

gate = ShineGate.build(profile="finance")
bundle = EvidenceBundle(
    run_id="req-1",
    question="What was Q2 revenue?",
    answer="Q2 revenue was $1,200,000.",
    preload=[PreloadChunk(chunk_id="c0", text="Q2 revenue was $1,200,000.", source="retrieval")],
    trace=[TraceStep(hop="retrieve", kind="retrieval", status="ok", detail={"n_chunks": 1})],
)
verdict = gate.verify(bundle)
if verdict.decision == "block":
    ...  # refuse or regenerate

2) BYO runtime wiring (LangGraph / custom) — recommended moat path

Same capabilities as ChorusGraph plugins, without requiring ChorusGraph:

from prismshine import ShineGate, wrap_llm, shine_verify_node, require_shine_wiring
from prismshine.wiring import pre_llm_check, record_retrieval, append_trace

gate = ShineGate.build(profile="default")

def retrieve(state: dict) -> dict:
    docs = my_retriever(state["question"])
    state = append_trace(state, record_retrieval("retrieve", n_chunks=len(docs)))
    return {**state, "docs": docs}

# Halt before tokens when preload is broken
decision = pre_llm_check(gate, state)
if decision.should_halt:
    return decision.fallback

# Or wrap the provider boundary
llm = wrap_llm(my_model, gate, state_factory=lambda: current_state)

# Guaranteed post-gen path
graph.add_node("shine", shine_verify_node(gate, answer_key="answer"))
require_shine_wiring(compiled, gate, already_has_shine_node=True)

Full matrix: docs/INTEGRATION.md §8 · demo: examples/enterprise_wiring_demo.py.

3) ChorusGraph plugin (richest out of the box)

pip install "prismshine[chorusgraph]"
from prismshine import ShineGate
from prismshine.integrations.chorusgraph import require_shine, shine_node

gate = ShineGate.build(profile="default")
g.add_node("shine", shine_node(gate, answer_key="reply"))
g.add_edge("generate", "shine")
compiled = g.compile(stack=stack)
require_shine(compiled, gate, prefer="both", already_has_shine_node=True)

Uses Route Ledger steps, warm chunk vectors when present, and ADR-008 interceptors (before_llm / after_llm). Details: docs/INTEGRATION.md §1.

4) LangGraph plugin

pip install "prismshine[langgraph]"
from prismshine.integrations.langgraph import require_shine, shine_langgraph_node

gate = ShineGate.build(profile="default")
graph.add_node("shine", shine_langgraph_node(gate, answer_key="answer"))
require_shine(compiled, gate, already_has_shine_node=True)

Features

Feature Description
Unified gate One ShineGate.verify — forensics + grounding fused
Handbook Tier-0 Versioned YAML signatures (EMPTY_RETRIEVAL, cache/tool/LLM failures, …)
Pre-generation halt pre_llm_check / interceptors stop broken preloads before tokens
Tier-1 copy-check Numbers, entities, dates — hard fabricated-figure floor
Tier-2 coverage Vector support using runtime embeddings when available; hash fallback
Tier-3 spans Optional LettuceDetect-class ONNX (not in the wheel — download once)
Tier-4 judge Opt-in OpenAI / Gemini on residual gray zone only
Named audit gate Every verdict names resolution_gate + evidence_hash
Profiles default / clinical / finance / legal handbook packs
Calibration prismshine calibrate + feedback JSONL overlays
Consistency contract Invalidation hooks + stale-cache detection dual-rail
Zero hard siblings Core pip install prismshine has no Insight package dependency

Architecture

                    ┌──────────────────────────────────────┐
  question ────────►│  EvidenceBundle                       │
  answer ──────────►│  preload[] · trace[] · node_state     │
  runtime evidence─►└──────────────────┬───────────────────┘
                                       ▼
                              ShineGate.verify()
                                       │
              ┌────────────────────────┼────────────────────────┐
              ▼                        ▼                        ▼
         Tier-0 handbook          Tiers 1–3                 Tier-4 (opt)
         (cause / halt)           copy · cover · spans      LLM judge
              └────────────────────────┼────────────────────────┘
                                       ▼
                         ShineVerdict (pass|flag|block|regenerate)
                         resolution_gate · signatures · spans · hash

Design deep-dive: docs/DESIGN.md · diagram: docs/prismshine-architecture.png.


Install & extras

pip install prismshine                 # core — CPU, zero LLM
pip install "prismshine[spans]"        # Tier-3 ONNX runtime + tokenizers
pip install "prismshine[coverage]"     # shared prismlang encoder session
pip install "prismshine[chorusgraph]"  # ChorusGraph plugins
pip install "prismshine[langgraph]"    # LangGraph plugins
pip install "prismshine[guard]"        # PrismGuard symmetry helpers
pip install "prismshine[judge-openai]" # Tier-4 OpenAI
pip install "prismshine[judge-gemini]" # Tier-4 Gemini
pip install "prismshine[dev]"          # pytest + ruff

Production checklist

  1. Tier-3 ONNX (required for run4-parity span detection): bare pip install prismshine does not ship Tier-3 — gray / fabricated-number paths may surface MISSING_CAPABILITY_FLAG until you install the extra and export weights (~1 GB, not in the wheel):

    pip install "prismshine[spans]"
    python -m prismshine.tools.ensure_span_onnx --export
    # then pin:
    #   PRISMSHINE_SPAN_ONNX=.../model.onnx
    #   PRISMSHINE_SPAN_TOKENIZER=.../tokenizer.json
    
  2. Domain calibration (marked row, not the uncalibrated headline):

    python -m prismshine.bench.calibrate_minilm --embedder hash   # CI-safe
    # or --embedder minilm for stronger overlays
    set PRISMSHINE_CALIBRATION=path\to\overlay.json
    
  3. Wire the moatexamples/enterprise_wiring_demo.py then docs/INTEGRATION.md.

  4. Receipts before claimsprismshine bench --suite all and comparative vs HHEM (docs/BENCHMARKS.md).

gate.capabilities() reports span_backend (onnx|lexical|unavailable), threshold_status, and pass_means. Without ONNX the gate stays honest (lexical) — it never fakes span SotA.


CLI

prismshine capabilities [--profile default|clinical|finance|legal]
prismshine verify --demo
prismshine verify examples/sample_bundle.json --profile default
prismshine feedback examples/sample_bundle.json --label grounded --out feedback.jsonl
prismshine calibrate ./samples --mode synthetic --profile clinical --out cal.yaml
prismshine bench --suite all|cause|grounding|latency|consistency --report benchmarks/reports

Benchmarks (PrismShine only)

Public claims use PrismShine vs encoder/judge competitors and Shine-only suites — not sibling package stacks.

Headline comparative receipt (2026-07-20, Azure ACI, ONNX Tier-3)

Vs Vectara HHEM-2.1-Open — HaluEval QA / numbers / summarization. Receipt: benchmarks/progress/2026-07-20_run4_onnx/.

system B1 QA F1 B2 numbers F1 Bsum F1 B1 p50 LLM calls
prismshine-fast 0.831 1.000 (0 FP) 0.600 90 ms 0
hhem-2.1-open 0.746 0.926 0.474 216 ms 0

In-process gates (prismshine bench)

Suite Proves
cause Tier-0 catch ≥90% on injected runtime failures; pre-gen 0 model calls
grounding Hard synthetic + optional RAGTruth
latency p50/p95 + judge escalation
consistency Stale-cache dual-rail

Methodology & fairness: docs/BENCHMARKS.md · market stance: docs/POSITIONING.md.


Profiles & handbook

gate = ShineGate.build(profile="clinical")  # or finance / legal / default

Builtin packs live under prismshine/handbook/builtin/. Thresholds stay proposal until you run prismshine calibrate (or feedback → calibrate). Catalog: docs/HANDBOOK.md.


Documentation

Doc Description
docs/LIMITS.md PASS≠truth, streaming, moat wiring boundaries
docs/DESIGN.md Architecture, scoring, module layout
docs/INTEGRATION.md ChorusGraph · LangGraph · Guard · Cortex · BYO
docs/HANDBOOK.md Failure-signature taxonomy
docs/BENCHMARKS.md Receipts before claims
docs/POSITIONING.md Market comparison & gates
docs/DECISIONS.md ADRs
docs/UPSTREAM.md Sibling version floors
CHANGELOG.md Release notes

Examples

Example What it shows
examples/enterprise_wiring_demo.py Pre-gen halt, grounding pass/fail, fact-correction cache invalidation
examples/tier4_judge_demo.py Opt-in Tier-4 OpenAI judge

Development

git clone https://github.com/insightitsGit/PrismShine.git
cd PrismShine
pip install -e ".[dev,spans]"
pytest
ruff check prismshine tests
prismshine bench --suite all --report benchmarks/reports

Publishing (maintainers)

pip install build twine
python -m build
twine check dist/*
# twine upload dist/*    # after tag v0.2.2 — requires PyPI credentials

Git: commit on main, tag v0.2.2, push tag when ready. Do not force-push main.


Status

0.2.2 — drop-in DX (validate_grounding / get_gate), Guard >=0.1.9, runtime Docker receipt.
0.2.1 — packaging hygiene (lean sdist) + install honesty for Tier-3 [spans] + verify --demo.
0.2.0 — enterprise-ready open source for the self-hosted fast verifier lane (HaluEval vs HHEM receipt + FIX hardening). Category-creator / beats-LLM-judge claims still need production wiring receipts and a fair judge comparator row.

License: Apache-2.0 · Author: Insight IT Solutions LLC · PyPI: prismshine · GitHub: insightitsGit/PrismShine

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prismshine-0.2.2.tar.gz (177.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

prismshine-0.2.2-py3-none-any.whl (131.5 kB view details)

Uploaded Python 3

File details

Details for the file prismshine-0.2.2.tar.gz.

File metadata

  • Download URL: prismshine-0.2.2.tar.gz
  • Upload date:
  • Size: 177.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for prismshine-0.2.2.tar.gz
Algorithm Hash digest
SHA256 85e422ecdcf5ae43997ca0e2221d4a284ea4993eaa98560fde1b84443c1b736c
MD5 0736e7484d8e1774921ea70713229fb4
BLAKE2b-256 98a73b8d9b10892c6e8f4ef688b511f0898be128efa18aa64f6798b018ea57d4

See more details on using hashes here.

File details

Details for the file prismshine-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: prismshine-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 131.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for prismshine-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b64a78d31355d5d6599a1318aa421c69e17f0812183b978083924f35f2010699
MD5 79d75beb24ebf7301ae0b78320d78b2c
BLAKE2b-256 ea69c240263d6ab75db5049c4db5b1c8bff4cbe43d2b5ec01e40d88214fcfeff

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page