๐Ÿง  SOV33 Brain Stack Architecture

4-brain split ยท Mamba-2 SSD state ยท 90/10 cascade ยท 2 small + 2 large per OWEM. Per FULLSTACK_MASTER. 12 Jul 2026.

โ† SOV33 Hub ยท Index

The 4-Brain Split (per sov33_4brain.py)

"Build your own AI โ€” it grows with you. Aggregate big, active small, every hop sovereign-bound."
โ€” The 4-path architecture: 10% top (conscious/System-2) + 90% bottom (subconscious/System-1) ร— left/right = 2 small + 2 large brains per OWEM.

The 4 Brain Slots

LEFT top-10%
routing_decision ยท conscious / System-2
small: qwen2.5:3b (3.1B)
large: meta-llama-3.3-70b (70B)
use_when: always (gate)
RIGHT top-10%
deep_dive ยท subconscious / System-2
small: qwen3:8b (8B)
large: meta-llama-3.3-70b (70B)
use_when: hard queries (top 10%)
LEFT bottom-90%
easy_queries ยท conscious / System-1
small: qwen2.5:3b (3.1B)
large: qwen3:8b (8B)
use_when: easy queries (90%)
RIGHT bottom-90%
final_validation ยท subconscious / System-1
small: qwen2.5:3b (3.1B)
large: meta-llama-3.3-70b (70B)
use_when: always (final answer)

Aggregate shape: 4 ร— max(small, large) = 70 + 70 + 8 + 70 = 218B aggregate per OWEM
Active shape: 3.1 + 8 + 3.1 + 3.1 = 17.3B active per request (the "aggregate big, active small" efficiency flip)
Per-OWEM instantiation: 5 OWEMs ร— 4 brains = 20 brain slots total
17.3B active per query ยท 20 brain slots (5 OWEMs ร— 4 brains) ยท REACH across 61 models (not summed params) โ€” per CHARTER_OWEM_FOUR_SCOPE

The 90/10 Cascade (per sov33_cascade_router.py)

How it routes

Step 1 โ†’ LEFT top-10% (qwen2.5:3b, fast router) ALWAYS runs first as the gate
Step 2 โ†’ Check difficulty (regex signals + length). If < 0.5 โ†’ easy query.
Step 3a โ†’ EASY (90%): LEFT bottom-90% (qwen2.5:3b small, fast) answers. Done.
Step 3b โ†’ HARD (10%): RIGHT top-10% (qwen3:8b โ†’ llama-70b) for deep dive
Step 4 โ†’ RIGHT bottom-90% (always): validates final answer
Step 5 โ†’ BFT-33 council votes on every hop (5 layers: 33, 12, 5, 3, 1 voters)

Cascade Stats (per cascade_router)

LaneRoleTypical modelActivation
LEFT conscious/smallrouting decisionqwen2.5:3b100% (always)
LEFT conscious/small (90%)easy queriesqwen2.5:3b~90%
RIGHT subconscious/large (10%)deep diveqwen3:8b โ†’ llama-70b~10%
RIGHT subconscious/largefinal validationqwen2.5:3b โ†’ llama-70b100% (always)

The Mamba-2 SSD State (per sov33_owem_v3.py)

State-Space Model integration

Each OWEM carries a 16-dim Mamba-2 state across calls. The state compresses long context (10ร— effective) and is hash-chained into the SIGIL.

mamba2_state_dim: int = 16           # per-call state
effective_context_multiplier: int = 10  # 5-20ร— range, mid-point

# State evolves with each sovereign op:
state_hash = hashlib.sha256(str(task).encode()).hexdigest()[:self.mamba2_state_dim]
#   โ†’ 16 hex chars = 64 bits of compressed context

The state is sovereign-bound: every state transition is SIGIL-anchored, audit-grade, and reversible via the SIGIL chain.

Per-OWEM Instantiation

5 OWEMs ร— 4 brains = 20 brain slots

Each OWEM (compliance, defense, intuition, voice, general) gets its OWN copy of the 4-brain split.

OWEMSpecialtyBrain stackMemory
complianceEU AI Act, UK AI Bill, Article 504 brains (sovereign-trained Qwen3-0.6B)801 samples + charter
defenseKill switch, intrusion, foreign-access4 brains (cloud-routed Oracle)1775 samples
intuitionPatterns, predictions, geometry4 brains (cloud-routed Oracle)1075 samples
voiceSovereign truths, Charter, Article 04 brains (cloud-routed Oracle)275 samples
generalGeneral knowledge fallback4 brains (cloud-routed Oracle)โ€”

Live Brain Stack Status

Loading...

The 6 Invariants (constant)

  1. Care-Floor 0.95 โ€” never changes. Sub-floor content vetoed BEFORE any brain call.
  2. Article 0 โ€” ISO fee-for-service only. Never take equity.
  3. 12 Sovereign Pillars โ€” every output charter-compliant
  4. BFT-33 quorum โ€” 23/33 minimum for binding decisions across all 4 brains
  5. Ed25519 SIGIL chain โ€” every state transition hash-chained + signed
  6. Sovereign-bound โ€” DID did:csoai:nicholas-001 (CSOAI Ltd UK 16939677)

What This Is NOT


๐Ÿง  SOV33 Brain Stack ยท 12 Jul 2026 ยท Per sov33_4brain.py + sov33_cascade_router.py + sov33_owem_v3.py
โ† Back to SOV33