Preview of three patent-pending modules. Join the early-access list to pilot in lab or field environments.
Software-first secure channel with quantum-inspired key derivation and in-band fidelity scoring. Built for spectrum-constrained, GPS-denied, and contested environments.
Overconfidence and drift detection for autonomous systems and AI agents. Flags confidence-evidence gaps with adaptive thresholds and audit-grade telemetry.
Quantum-inspired state sanity checker. Compares live state vectors against WKB-style references and updates a curvature tensor to expose deep misalignment.
Outcome: Gate coordination boosts by real-time link fidelity instead of hope.
v1.0 • Model-agnostic SDK
from wrong_unraveling_detector import WrongUnravelingDetector
import numpy as np
detector = WrongUnravelingDetector(trsd_threshold=0.30, semantic_n=8)
confidence = 0.90
trsd = 0.20
p_classical = np.random.dirichlet(np.ones(64))
evidence = np.random.randn(64)
generations = np.random.randn(8, 64) # optional
result = detector.decide(confidence=confidence,
trsd_score=trsd,
p_classical=p_classical,
evidence=evidence,
generations=generations,
fidelity=0.95,
coherence=0.9,
entropy=0.1)
print(result["action"], result["scores"])
score(state_vec) → anomaly, physics_plausibility; emits JSONL telemetry.Call detector.decide() post-logits, or batch_detect() for bulk.
Use cases: ChatGPT Enterprise add-on safety; internal tools with guardrails.
Buyer value: safety + auditability (hash-chained ledger) for regulated orgs.
Insert as a Semantic Kernel step or LangChain link.
Azure ML: batch-score outputs and block regressions via CI.
Buyer value: Responsible AI posture; easy AKS containerization.
Transformers: plug in post-softmax using AutoModelForCausalLM.
Multi-agent dark comms with per-agent HKDF keys + fidelity scoring.
Buyer value: open-model flexibility with enterprise guardrails.
LangChain • Haystack (RAG) • Semantic Kernel.
HTTP/gRPC microservice for language-agnostic stacks.
pip for app-embedded use; Docker for on-prem; serverless for bursty checks.
Exports JSONL telemetry to S3/Blob/GCS; SIEM-friendly.
Talk to Engineering