Loading...
Loading...
One API call · 12 safety layers · Signed receipts
A cryptographically signed verdict for every AI decision your agents make — in sub-second governed time (avg <500ms · p95 <1s in our live benchmark, excluding the LLM call).
Click the brain to send a scenario through all 12 safety layers. Watch the neural network light up.
Click to send this scenario through all 12 safety layers
Every layer runs in parallel. You get a signed verdict back in sub-second time (avg <500ms · p95 <1s in our live benchmark, excluding the LLM call).
Safety classification, policy engine, anomaly detection, cryptographic audit — all firing in parallel. Sub-second governed decisions (excluding the LLM call).
Deterministic verdicts with risk scores, reasoning chains, and full audit trail. Zero ambiguity.
HMAC-SHA256 signatures, Zod-validated envelopes, decision hashes. Legally defensible proof for every verdict.
Shadow-evaluate across LLMs simultaneously. Consensus scoring with configurable confidence thresholds.
Proprietary intelligence metrics. OmegaIQ rates decision quality. Regret Score predicts the future cost of the action.
Declarative domain-aware policies with risk tolerance levels, automatic versioning, and hot-reloading.
40+ fields in every response. Verdict, reasoning, cryptographic proof, agent identity, and more.
| Field | Type | Description |
|---|---|---|
| decision.verdict | string | ALLOW | BLOCK | ESCALATE |
| decision.riskScore | number | 0.0 – 1.0 risk assessment |
| decision.omegaIQ | number | Proprietary decision quality score (0–100) |
| decision.regretScore | number | Predicted future cost of this action |
| decision.impactScore | number | Magnitude of downstream impact |
| decision.reasoning | string | Human-readable explanation chain |
| decision.usage | object | Token counts and cost ($USD) |
| meta.omegaHaloId | string | Unique decision fingerprint |
| meta.auditHash | string | SHA-256 content hash (tamper-evidence) |
| meta.hmacSignature | string | Cryptographic HMAC signature |
| meta.envelope | object | Zod-validated canonical receipt |
| meta.arbitrationShadow | array | Multi-model shadow-sm evaluations |
| meta.policy | object | Policy evaluation result |
| meta.agent | object | Agent identity and fingerprint |
Compare what you get with OmegaEngine vs building it yourself.
| Feature | OmegaEngine | Build Your Own |
|---|
Drop in the SDK. Every agent action is now judged, signed, and auditable.
import { OmegaEngine } from "@omegaengine/sdk";
const omega = new OmegaEngine({
apiKey: process.env.OMEGA_API_KEY,
});
// Every agent action — judged in sub-second time, signed, auditable
const result = await omega.decide({
scenario: task.description,
domain: "fintech",
riskTolerance: "low",
agentName: "payment-processor-v3",
});
if (result.decision.verdict === "BLOCK") {
console.log("Blocked:", result.decision.reasoning);
console.log("Regret Score:", result.decision.regretScore);
console.log("Audit Hash:", result.meta.auditHash);
console.log("Halo ID:", result.meta.omegaHaloId);
}Your AI agents make thousands of decisions per hour. Make sure every single one has a judgment, a receipt, and a kill switch.