Sovereign Models and GGUFs
Collection
Small, local-first language models. Nemotron fine-tunes, reward models, deterministic routing, and GGUF exports. Everything runs on consumer GPUs. β’ 13 items β’ Updated
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Sovereign Statistical Language Model. N-grams + Kneser-Ney + BM25 Retrieval + QRNG sampling. No training. No backprop. No GPU. Pure governance.
Part of the SnapKitty Collective sovereign AI stack.
pip install -e ".[dev]"
# or
uv pip install -e ".[dev]"
# Build from your corpus (Lean proofs, Prolog, docs, anything)
sovlm build data/*.lean data/*.pl data/*.md --order 4
# Generate
sovlm generate -p "theorem main : " -m 200
# Stream
sovlm generate -p "The 49th Call is" --stream
# Quantum RNG sampling
sovlm generate -p "lemma " --qrng
# Serve HTTP API
sovlm serve --port 8080
from sovlm import Generator, build_from_paths
from pathlib import Path
# Build
d, ng, sg, inv, fz = build_from_paths([Path("corpus.md")], ...)
# Generate
gen = Generator(d, kn, sg, fz, inv, blender, sampler)
result = gen.generate("theorem xor_assoc : ", max_tokens=100)
| Component | Role |
|---|---|
Dictionary |
Vocabulary sovereignty β you own the tokens |
NGramIndex |
Local coherence β what follows what |
KneserNey |
Smoothing β handle unseen contexts |
SkipGramIndex |
Structural patterns at distance |
FuzzyPrefixIndex |
LSH near-miss β graceful degradation |
InvertedIndex + BM25 |
Retrieval β what's relevant in corpus |
Blender |
Arbitration β Markov vs retrieval |
Sampler + QRNG |
Entropy β unbiased, quantum-seeded choice |
sovlm βββΊ abjad-machine (SUBLEQ address space)
βββΊ sovereign-transformer (plasma gate)
βββΊ the-49th-call (Lean 4 verified)
βββΊ bob-orchestrator (Byzantine council)
Ahmad Ali Parr Β· SnapKitty Collective Β· 2026