Every distinct model class in the sovereign estate. What it is. What it does. How to call it. Where it runs. What's honest. Tab 3 of 3 (also see: SOV3_OOWM_TAB.html text-first, SOV3_OOWM_VISUAL.html diagram-first).
An MoE replaces a single dense neural network with a router + multiple "expert" sub-networks. The router selects 2-8 experts per token, not the full set. Result: model has 30B total params but only 3B are "live" per token → runs 8-10× faster than a dense 30B model with comparable reasoning quality.
| Reasoning (large) | qwen3:30b-a3b · 18GB · 80 tok/s · 32K ctx |
| Fast route (small) | qwen2.5:3b · 2GB · ~200 tok/s · 8K ctx |
sov3_4_brains_1_oowm.pyDesigned for M4 192GB · confirm ollama list on the 192GB Mac before claiming live
Where MoE uses many sub-networks inside one model, MoM uses many independent specialist whole models. Moondream sees objects in images. Qwen-VL understands spatial layouts. Zamba parses long video. A router decides which (or which combination) is needed per task.
| Vision (small) | moondream · 1.7GB · fast object recognition |
| Vision+spatial (large) | zamba-large · ~7GB · image + video captioning |
| Vision-Language | qwen-vl · understands layout, OCR, charts |
Live on VM
Where transformers scale quadratically with context length (32K tokens → 1B FLOPs per token), state-space models scale linearly. Mamba-2 with state-dim 16 stores a fixed-size summary of all prior context in 16 floats — every new token updates that summary in O(1). You can run Mamba-2 over 1M tokens for the same cost as 1K tokens in a transformer.
| Mamba-2 (long mem) | Mamba-2 SSM · state-dim 16 · O(1) per token |
| Gematria layer | Gematria · 16-dim Mamba variant for intuition routing |
Live (16-dim state in OOWM) · handle_oowm_status hardcodes True
DeepSeek-R1 is trained to "think out loud" before answering. Instead of one-shot generation, it writes a thinking trace (3-15 seconds) then produces the final answer. This gives dramatically better results on tasks requiring multi-step logic — exactly the EU AI Act / GDPR / BFT council use cases.
| Reasoning | deepseek-r1:7b · 4.7GB · 40 tok/s · 16K ctx |
compliance, sov3, ethics, reasoning task categoriesLive on VM
Kokoro is an 82-million-parameter TTS model from hexgrad. Real-time speech on CPU. Voices: Bella, Adam, Antoni, Sarah (UK), Emma (UK), etc. We pair it with Piper as fallback. Sovereign voice — no call to ElevenLabs or OpenAI TTS.
| Primary | Kokoro-82M · 82M params · CPU real-time · 9 voices |
| Fallback | Piper · offline, monophone voices |
Live (os.meok.ai voice dock)
Embedding models convert text (or images) into fixed-dimension vectors. Two texts with similar meaning get vectors that are close in cosine space. Used for RAG (retrieval-augmented generation) over the 49GB UK government data moat and any document collection.
| Embedder | BGE-M3 · 1024-dim · multilingual (100+ langs) |
| Re-ranker | BGE-reranker · cross-encoder, top-k refinement |
Live, indexes all 6 Hives
Where the 8 model types above are general-purpose, these 7 are narrow specialist classifiers trained on labelled data CSOAI produces itself. They detect specific signals that broader models miss.
| creativity_assessment_nn | r² 0.91 · 350 samples · ✅ strong |
| care_pattern_analyzer | mae 0.037 · 600 samples · ✅ strong |
| relationship_evolution_nn | mae 0.071 · 500 samples · ✅ strong |
| care_validation_nn | mae 0.19 · 19 samples · ⚠️ tiny |
| partnership_detection_ml | mae 0.22 · 19 samples · ⚠️ tiny |
| threat_detection_nn | acc 0.45 · 33 samples · ❌ weak, retrain |
| dependency_detection_nn | acc 0.22 · 50 samples · ❌ weak, retrain |
3 models live · 2 need retraining
For tasks where local sovereign models aren't strong enough, we route to external frontier models (OpenAI, Anthropic Claude, GLM-5.2, Groq) — but never as the primary answer. They vote as part of a BFT ensemble, or act as fallback when local models decline. Critically: no user data is ever used to train them.
| Frontier (voter) | OpenAI · Claude · Anthropic API |
| Chinese cloud | GLM-5.2 · sovereign-replaceable |
| Speed fallback | Groq · low-latency secondary |
Live as BFT voters