Sovereign Inference Routing Specification

How DEFONEOS routes every inference request based on trust ring, data classification, and sovereignty requirements. Ring 0: UK-sovereign-only. Ring 1: AUKUS-compatible. Ring 2: unrestricted.

3
Routing Tiers
8
Decision Factors
100%
Ring0 UK-Only
0ms
Ring0 Latency

1. Overview

Every inference request in DEFONEOS passes through the Sovereign Inference Router โ€” a decision engine that determines which model, which compute, and which jurisdiction processes the request. The router ensures that data sovereignty is enforced at the inference layer, not just the storage layer.

Core principle: The sensitivity of the data determines the sovereignty of the inference. Ring 0 data (governance, escrow, compliance) always uses UK-sovereign MLX models. Never external APIs.

2. The 3 Routing Tiers

Incoming Request
โ”‚
โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ Data Classification โ”‚ โ”€โ”€โ†’ What ring is the data from?
โ”‚ (automatic) โ”‚ โ”€โ”€โ†’ What classification level?
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”
โ–ผ โ–ผ โ–ผ
RING 0 RING 1 RING 2
โ”‚ โ”‚ โ”‚
โ–ผ โ–ผ โ–ผ
MLX MLX+ Any
(UK) Bridge Model

Tier 1 โ€” Ring 0 (Core Sovereign)

Model: SOV3 sovereign models running on MLX (Apple Silicon, UK hardware).
External API: NONE. Zero external API calls. Under any circumstances.
Models available: SOV3small (governance), SOV3large (complex reasoning), BFT deliberation models.
Latency: <100ms (local inference).
Cost: ยฃ0 (self-hosted compute).

Tier 2 โ€” Ring 1 (Defence Sensors)

Model: MLX (UK-sovereign) by default. Frontier bridge available (BFT-gated) for complex reasoning on non-sensitive sensor data.
External API: AUKUS-partner models only, BFT 23/33 approved per call.
Models available: SOV3 + frontier models (GPT-4o, Claude, Gemini) via bridge.
Latency: <100ms (sovereign) / 500ms-2s (frontier bridge).
Cost: ยฃ0 (sovereign) / API cost (frontier bridge, tracked).

Tier 3 โ€” Ring 2 (Civil Open-Data)

Model: Any model. Data is publicly available, so sovereignty constraints are relaxed.
External API: Any (OpenAI, Anthropic, Google, local MLX, cloud GPU).
Models available: All models.
Latency: Model-dependent.
Cost: Model-dependent.

3. The 8 Decision Factors

The router evaluates 8 factors for every request before selecting a model and compute target:

#FactorDescriptionRing 0 RuleRing 1 RuleRing 2 Rule
F1Data RingWhich trust ring the data belongs toForce Ring 0 modelDefault Ring 1 modelAny model
F2ClassificationOFFICIAL / OFFICIAL-SENSITIVE / SECRETFORCE UK-only (any class)SENSITIVE โ†’ MLX onlyOFFICIAL โ†’ any
F3PII PresentDoes the data contain personal data?FORCE UK-onlyPII โ†’ MLX onlyNo PII in Ring 2
F4Red-Line ProximityDoes the request approach red-line boundary?FORCE UK-only + BFT checkBFT checkN/A
F5BFT Governance FlagHas BFT council flagged this request type?FORCE UK-only + BFT voteBFT voteN/A
F6Model Capability NeededDoes the task need frontier capability?NO external modelsBFT-gated bridgeAny model
F7Latency RequirementIs this real-time (<500ms)?MLX onlyMLX preferredAny
F8Cost BudgetIs there an API cost budget constraint?ยฃ0 alwaysMLX free / bridge trackedAny

4. Ring 0 Invariant: Zero External API

Ring 0 has an architectural invariant: zero external API calls. This is not a policy โ€” it is enforced in code:

Testing: The adversarial red-team framework continuously probes Ring 0 for external API leakage (V5 โ€” Model Extraction). 0 findings to date.

5. Frontier Bridge (Ring 1 Only)

For Ring 1 requests that need frontier model capability (complex reasoning, large-context analysis), DEFONEOS provides a frontier bridge:

StepAction
1Request classified as Ring 1 + frontier capability needed (F6 = true)
2Router checks BFT governance flag (F5). If flagged โ†’ BFT vote (23/33).
3Router checks classification (F2). If OFFICIAL-SENSITIVE or higher โ†’ MLX only (no bridge).
4Router strips PII from the request (F3 check). Only non-personal data sent to frontier model.
5Router selects frontier model from BFT-approved allowlist.
6Request sent. Response received. SIGIL receipt generated.
7Response merged with sovereign inference context. Final output delivered.

Models in BFT-approved allowlist: GPT-4o (OpenAI), Claude 3.5 Sonnet (Anthropic), Gemini 1.5 Pro (Google). All accessed via API keys stored in UK-sovereign secrets manager.

6. SOV3 Sovereign Model Stack

The UK-sovereign models that serve Ring 0 and default Ring 1:

ModelSizeUse CaseHardware
SOV3small7B-13BGovernance decisions, BFT voting, compliance checksMLX on M2/M3/M4 (local)
SOV3large30B-70BComplex reasoning, multi-step analysisMLX on M4 16GB (fleet)
SOV3 OWEM7B (fine-tuned)Domain-specific (defence, compliance, sovereignty)MLX on any node
BFT DeliberationSOV3small ร— 3333-agent parallel deliberation for governance votesMLX fleet (distributed)

7. Inference Cost Tracking

TierCost ModelTracking
Ring 0 (SOV3)ยฃ0 (self-hosted compute)SIGIL receipt records compute time, no monetary cost
Ring 1 Sovereign (MLX)ยฃ0 (self-hosted compute)SIGIL receipt records compute time
Ring 1 Frontier BridgeAPI cost per callSIGIL receipt records API cost + model + token count
Ring 2 (Any model)Model-dependentSIGIL receipt records full cost breakdown

8. Failover: Sovereign-Only Mode

If the frontier bridge becomes unavailable (API outage, network partition, BFT emergency freeze), DEFONEOS automatically degrades to sovereign-only mode:

Key property: DEFONEOS is fully operational in sovereign-only mode. The frontier bridge is an enhancement, not a dependency.