USE KEYS OR ARROW BUTTONS
Introducing

CAT SYNAPSE

Architecture for Deterministic, Predictive, Hallucination-Free
Catastrophe Intelligence.

Every score is reproducible, bounded, replayable. Every prediction carries calibrated confidence and provenance. No generative model invents a fact that drives a real-world response.

Anchored toPatent Pitch v9 · FIG.1–FIG.8 · Claims C-1 through C-4
AudienceSystem Architects · Patent Counsel · Underwriting · Claims · Engineering Leadership
ClassificationStrictly Confidential — Attorney-Client Privileged
The Thesis

Three properties autonomy must have — simultaneously.

When the system contacts 992 policyholders without human review, none of these is optional.

01

DETERMINISTIC

Identical inputs produce identical outputs, byte-for-byte. Every score and routing decision is a pure function of versioned inputs and versioned model weights. Replay is exact.

02

PREDICTIVE

The system forecasts severity escalation, boundary expansion, and time-to-impact — emitting these as typed, bounded, confidence-tagged values. Computed by frozen models, not invented by generative ones.

03

HALLUCINATION-FREE

No generative model produces, modifies, or overrides any value that drives an autonomous action. Generative cognition is confined to language about already-decided facts; every output passes a validator gate.

Core thesis. These are not three trade-offs to balance — they are three orthogonal properties achieved by partitioning the system correctly.
The Engineering Contract

Six engineering disciplines.

Each materialised in one or more architecture layers — disciplines define the contract, layers deliver it.

01

Pure-function math

Every score is f(x)→y with no I/O, no state, no RNG. Replay is byte-exact.

02

Frozen-weight predictive inference

DSTCEs with pinned weight hash, greedy decode, typed I/O, calibrated probability.

03

Validator gates at every boundary

Type · range · enum · reference · monotonicity · consistency. Failing gate = hard halt.

04

Generative cognition confined to language

LLMs produce only natural-language strings. No computing. No deciding.

05

Forecast as signal, not as narrative

Predictions are typed {tier, p, ci95, horizon} — never generated text.

06

Versioned, replayable everything

Raw events, signals, weights, code, calibration, outcomes — all versioned, append-only.

Discipline 01

Pure-Function Math.

Every autonomous-action score is a pure mathematical function.

Properties Guaranteed
Replay-exact

Same inputs → same value, byte-for-byte, on any machine, at any time.

Unit-testable

Every function has a fixed input → fixed output test set. CI fails on drift.

Auditable

The function definition is the audit. No post-hoc explanation needed.

Compositional

PH Score = f(CAT × Proximity × Embedding) inherits the guarantee.

What this rules out

No LLM in the calculation path. No 'helper' classification calls inside scoring functions. Generative models cannot make the byte-equality guarantee even at temperature zero.

Anatomy of a Pure Score
INPUTS
CAT Score
Proximity Δ
Hist. Embedding
PURE FUNCTION
f_ph(c, p, e)
no I/O · no RNG
no global state
9.57
/ 10
WORKED EXAMPLE
PH-100017 · REFID-158053 → HIGH RISK PRIORITY

The function definition is the audit.

A regulator asking "why was this score 9.57?" receives a function reference and an input vector — not a generated explanation.

Discipline 02

Frozen-Weight Predictive Inference.

Predictive is not probabilistic-in-the-wrong-places. A constrained Transformer is a function.

CAT Synapse uses 14 Domain-Specific Transformer-Based Cognitive Engines (DSTCE). Each forecasts — and each is made deterministic by six constraints.

01
Frozen weights

SHA-256 model hash recorded per inference

02
Greedy decoding

Temperature 0 · top-k 1 · no sampling

03
Pinned tokenisation

Tokeniser version hashed alongside weights

04
Typed inputs

Structured records — not free-form text

05
Typed outputs

Enum + calibrated probability — never prose

06
Held-out calibration

Probabilities from validation set, not self-report

What each DSTCE outputs
  • Severity tier ∈ {LOW, MED, HIGH, CRITICAL} + probability
  • Likelihood ∈ {Likely, Observed} + probability
  • Immediacy ∈ {Immediate, Imminent, Forecast} + probability
  • Peril sub-type + probability
Why this is deterministic prediction

A DSTCE under these constraints behaves like a function — input → label, label → probability. Replay with the same inputs against the same model hash and you get the same output. Every time.

Discipline 03

Validator Gates at Every Boundary.

Determinism inside a layer is not enough — every value crossing a boundary is checked.

01
Type conformance

Every field present, every type correct, no nulls in required positions

02
Range bounds

severity ∈ [0,10] · proximity ≥ 0 · p ∈ [0,1] · window.end > window.start

03
Enumeration

severity_tier ∈ {LOW,MED,HIGH,CRITICAL} · likelihood ∈ {Likely, Observed}

04
Reference integrity

County codes resolve in gazetteer · PH IDs in register · model hashes in registry

05
Monotonicity

event_version strictly increasing · severity escalations require data witness

06
Consistency

policyholder_scores entries covered by affected_geo.counties

A failing gate is a hard halt

Not a soft warning. Not a fallback. The signal does not propagate. The event is held in quarantine with the gate's diagnostic recorded.

Bad predictions cannot trigger autonomous responses. Model regressions are visible operationally — not weeks later.

Where the gates live

L1 → L2 · L2 → L2.5 · L2.5 → L3 · L3 → L4 · L4 → L0 feedback

Every layer boundary runs its own gate.

Discipline 04

Generative cognition confined to language.

Three classes of inference, partitioned by determinism level.

Inference Class
Used For
Output Type
Determinism
Rule / pure function
Severity composition · proximity computation · PH Score synthesis · priority matrix · time-to-impact arithmetic
Typed numeric or enum
Byte-exact replay
Frozen predictive model (DSTCE)
Severity classification from raw alert · Likelihood (Likely vs Observed) · Immediacy · peril sub-type
Enum + calibrated probability
Replay-exact under pinned weights + greedy decode
Generative LLM (constrained)
Per-stakeholder narrative · channel-appropriate phrasing · personalisation tone · acknowledgement copy
Natural-language strings only
Constrained · gated by signal-conformance validator
The Hallucination Firewall

Every generated message is validated against the signal it claims to describe. Names a county not in affected_geo, references a severity not in the signal, invents a time window — it is rejected and regenerated. Never delivered.

Discipline 05

Forecast as Signal, not as Narrative.

Predictions are typed values produced by deterministic models — never generated text.

Three Forecast Classes
01
Severity forecast

DSTCE-projected severity at t+30 / 60 / 120 / 240 min, each with calibrated probability.

02
Boundary forecast

Peril-specific evolution model (flood routing, fire spread, hurricane track) projecting affected geography at future timesteps.

03
Exposure forecast

Joining the boundary forecast against the policyholder register → projected PH count by future timestep.

Canonical Forecast Payload
"forecast": {
  "model_id":   "FLD-EVOL-1.4.2",
  "model_hash": "sha256:9c8a…",
  "horizon_minutes": [30, 60, 120, 240],
  "severity_path": [
    { "t_plus":  30, "tier":"HIGH",     "p":0.91, "ci95":[0.84,0.96] },
    { "t_plus":  60, "tier":"HIGH",     "p":0.83, "ci95":[0.72,0.91] },
    { "t_plus": 120, "tier":"CRITICAL", "p":0.67, "ci95":[0.51,0.79] },
    { "t_plus": 240, "tier":"CRITICAL", "p":0.74, "ci95":[0.55,0.86] }
  ],
  "exposure_path": [ /* projected PH count per horizon */ ],
  "computed_at": "2026-01-17T14:34:08Z"
}

L3 may narrate this in stakeholder language. L3 may never produce it.

Discipline 06

Versioned, Replayable Everything.

The operational definition of determinism is replay.

"A system is deterministic to the extent it can be replayed." CAT Synapse can replay any past CAT event end-to-end and reproduce every score, every routing decision, every alert. That is the bar.

01

Raw events

v1 → vN append. Event 252793 traversed v1 → v8 across 8 NWS reissues.

02

Risk Signals

Each recomputation emits a new signal version. Monotonic counter.

03

Model weights

SHA-256 content hash recorded in every DSTCE inference call.

04

Pre-processing

Tokeniser version + normalisation code version pinned per inference.

05

Decision code

Pure-function math layer ships with git SHA pinned to deployed binary.

06

Outcomes

Delivery confirmations · acknowledgements · claims correlations append-only.

The Layered System

Architecture overview · L0 → L4.

Six disciplines materialised across five layers + one typed interface.

L0
FOUNDATION
Vector DB · Frozen DSTCE weights · Model registry · Outcome ledger · Gazetteer · PH register
L1
DATA INGESTION
Multi-source feeds → validate · dedup · normalise · geo-resolve · event versioning (v1..vN)
L2
DETERMINISTIC PERIL ENGINE
(a) Frozen DSTCE → Severity, Likelihood, Sub-type · (b) Pure-function math → CAT, Proximity, PH Score, Priority, TTI · (c) Evolution model → forecasts
L2.5
RISK SIGNAL LAYER
Typed JSON contract — the only artefact crossing math ↔ cognition. Validator-gated. Versioned.
L3
COGNITIVE & ORCHESTRATION
Constrained LLM narrative · channel selection · per-PH personalisation · signal-conformance gate
L4
AUTONOMOUS EXECUTION
Multi-channel delivery · Synaptic Activation · Self-Liquidation · outcome capture
L2 Deep Dive · Patent Claim C-2 / FIG.6

The Equation of Intelligence.

Three risk metrics — pure-function composite.

01

CAT Risk Score

Event severity — asset-independent

  • DSTCE severity + likelihood
  • Alert structured parameters
  • Real-time intelligence feeds
0.00 – 10.00

tier ∈ {LOW · MED · HIGH · CRITICAL}

Pure function over DSTCE output and feed parameters

02

Risk Proximity Score

Spatial relationship — asset to event

  • PH latitude / longitude
  • Event polygon
  • Distance to coast · urban class
Δ ≥ 0 km

calculate_proximity_score(lat, lng, geo)

Recalculated continuously as boundary evolves (C-4)

03

Policyholder Risk Score

Composite priority — the autonomy trigger

  • CAT Score
  • Proximity Score
  • Historical Vector DB embedding
9.57 / 10

HIGH RISK PRIORITY

Worked example · PH-100017 · REFID-158053

All three metrics are pure functions. Same inputs → same scores, byte-for-byte, on any machine.

L2.5 · The Contract

The Risk Signal Layer.

The only artefact that crosses the boundary between deterministic math and constrained cognition.

Why this layer is load-bearing
01
Typed values, not raw text

L3 reads enums and numerics; severity is not interpreted, it is read.

02
Embedded constraints

Constraints block enforced by the L3 orchestrator and conformance gate.

03
Provenance attached

Engine version + model hash + code SHA + input hash on every signal.

04
Versioned propagation

Recomputation emits a new signal version; old versions retained for replay.

05
Conformance gate downstream

Every L3 output validated against the signal before leaving the layer.

Canonical Risk Signal (Extract)
{
  "event_id": "REFID-158053",
  "event_version": 3,
  "peril_class": "WILDFIRE",

  "classifications": {
    "severity_tier": "HIGH",       "severity_p":  0.94,
    "likelihood":    "Observed",   "likelihood_p":0.97,
    "immediacy":     "Imminent",   "immediacy_p": 0.88
  },
  "scores": {
    "cat_score": 7.8,
    "affected_geo": {
      "state":"TX",
      "counties":["Brewster","Pecos","Terrell","Val Verde"]
    }
  },
  "forecast": { /* typed severity & exposure paths */ },
  "policyholder_scores": [ /* 992 entries */ ],

  "constraints": {
    "l3_must_not_recompute_scores":      true,
    "l3_must_not_modify_classifications":true,
    "l3_must_not_invent_geography":      true
  },
  "provenance": {
    "engine_version":"L2-DPE-1.4.2", "code_sha":"git:9a2f4e8",
    "input_hash":"sha256:c1b3…", "replayable": true
  }
}
Per-Layer Audit

Determinism scorecard.

How each layer satisfies the three core properties.

LAYER
DETERMINISTIC
PREDICTIVE
HALLUCINATION-FREE
L0
Append-only ledger; provenance per record
Hosts frozen DSTCE weights & evolution models w/ hashes
Historical embeddings are facts, not generations
L1
Schema + time + geo resolution are pure functions
No prediction at this layer
No semantic interpretation; nothing to invent
L2
Pure-function scores; frozen DSTCE; greedy decode
DSTCE + evolution model → typed predictions w/ p
No generative model in this layer; outputs gated
L2.5
Type · range · enum · reference · monotonicity
Forecasts carried as typed values w/ horizons & ci95
Constraints block declares what L3 may not do
L3
Decision matrix & channel policy are rule-based
Reads forecast from signal; does not produce predictions
Generative use confined to language; conformance gate
L4
Channel routing, throttling, dedup are rule-based
Operates on signal forecasts; pre-positions response
Delivery payload validated against signal pre-send
The Composite Guarantee

Every numeric that triggers an autonomous action is replayable from versioned inputs. Every forecast carries typed horizon, probability, and confidence. Every generated message has been validated against the signal it describes.

Patent

Patent claim mapping · C-1 through C-4.

Each claim anchored to the architecture and to a specific inventive step.

C-1

Layered Autonomous CAT Risk Pipeline

FIG.1–4
ARCHITECTURE ANCHOR

End-to-end L1→L4 pipeline; no human arbitration; frozen-weight DSTCE inference; deterministic decision weighting.

INVENTIVE STEP

Full autonomy survives audit because every node is deterministic; replay is exact.

C-2

Composite PH Risk Scoring Engine

FIG.6
ARCHITECTURE ANCHOR

L2 pure-function composite — CAT × Proximity × Historical Embedding → PH Score.

INVENTIVE STEP

A single autonomy-triggering score that is reproducible byte-for-byte from versioned inputs.

C-3

Synaptic Activation & Self-Organizing Optimization

FIG.7, FIG.8
ARCHITECTURE ANCHOR

L4 dynamic topology activated per event trajectory; pathways auto-prune on subsidence.

INVENTIVE STEP

The architecture itself is automated; not a static workflow with a runtime.

C-4

Event Impact Evolution & Autonomous Retraining

FIG.5, FIG.7
ARCHITECTURE ANCHOR

Versioned signal propagation; closed-loop Vector DB enrichment; out-of-band model promotion preserves determinism.

INVENTIVE STEP

Continuous recalibration without sacrificing the replay guarantee — retraining is versioned, not in-place.

In Operation

Live system proofs.

The architecture in operation against real NWS-issued events.

WILDFIRE

Red Flag Warning

REFID-158053

DATE
17 Jan 2026
GEOGRAPHY
Texas — 4 counties
WINDOW
14:34 → 21:00 CST
SEVERITY
HIGH (Likely)
VERSIONING
v1 → v2 → v3
POLICYHOLDERS
992 notified autonomously
PH-100017 → 9.57 / 10 → HIGH RISK PRIORITY

FLOOD

Mississippi River Warning

Event 252793

DATE
04 May 2026
GEOGRAPHY
Cross-state IL + MO — 6 counties
WINDOW
10:23 CDT → 20:12 CDT (+1d)
SEVERITY
HIGH (Observed) · stage 32.0 ft
VERSIONING
v1 → v8 across 8 reissues
POLICYHOLDERS
410 notified autonomously
Stress test for Claim C-4 · 8 versioned mutations
1,402 policyholders contacted. Zero humans in the decision loop. Every score replayable. Two perils, one pipeline.
In One Line

CAT SYNAPSE

Deterministic because every score is a pure function of versioned inputs.

Predictive because frozen learned models produce typed, calibrated forecasts inside a deterministic envelope.

Hallucination-free because generative cognition is structurally confined to language about already-decided facts, and every generated artefact is validated against the signal it claims to describe.

Three properties. One architecture. Achieved together — not traded against each other — because each is operationalised in a different layer.

Patent Pitch v9 · FIG.1–FIG.8 · Claims C-1 through C-4

Strictly Confidential — Attorney-Client Privileged