"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.
| Lane | Role | Typical model | Activation |
|---|---|---|---|
| LEFT conscious/small | routing decision | qwen2.5:3b | 100% (always) |
| LEFT conscious/small (90%) | easy queries | qwen2.5:3b | ~90% |
| RIGHT subconscious/large (10%) | deep dive | qwen3:8b โ llama-70b | ~10% |
| RIGHT subconscious/large | final validation | qwen2.5:3b โ llama-70b | 100% (always) |
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.
Each OWEM (compliance, defense, intuition, voice, general) gets its OWN copy of the 4-brain split.
| OWEM | Specialty | Brain stack | Memory |
|---|---|---|---|
| compliance | EU AI Act, UK AI Bill, Article 50 | 4 brains (sovereign-trained Qwen3-0.6B) | 801 samples + charter |
| defense | Kill switch, intrusion, foreign-access | 4 brains (cloud-routed Oracle) | 1775 samples |
| intuition | Patterns, predictions, geometry | 4 brains (cloud-routed Oracle) | 1075 samples |
| voice | Sovereign truths, Charter, Article 0 | 4 brains (cloud-routed Oracle) | 275 samples |
| general | General knowledge fallback | 4 brains (cloud-routed Oracle) | โ |
did:csoai:nicholas-001 (CSOAI Ltd UK 16939677)