A Rust-based transformer inference engine with NeuralDB-style knowledge injection, designed for local deployment on consumer GPUs (RTX 2080, 8GB VRAM). Primary use case: intelligent email management with persistent, editable domain knowledge.
Instead of relying on large cloud models with conversational context, use a small distilled model (e.g., QwOpus — Qwen distilled with Opus reasoning) and inject task-specific knowledge directly into the model's weights via a neural Key-Value database. The model "just knows" your domain without needing prompts or RAG.
Existing approaches to injecting knowledge into LLMs:
+-------------------+ +------------------+ +------------------+
| Rust Inference | | NeuralDB KV | | Knowledge |
| Engine |<--->| Store (Gated |<--->| Editor |
| (quantized model)| | Retrieval) | | (CLI/API) |
+-------------------+ +------------------+ +------------------+
| |
v v
+-------------------+ +------------------+
| Task Interface | | Learning Loop |
| (Email/Outlook | | (User feedback |
| add-in, CLI) | | -> KV entries) |
+-------------------+ +------------------+
Rust Inference Engine
NeuralDB KV Store
Knowledge Editor
("aj@jaiglo.com", "legitimate IT provider for GRM, never junk")("elena@jaiglo.com", "spam newsletter, always junk")("dse_NA4@docusign.net", "phishing campaign impersonating Docusign, always junk")("INBOX/Junk Email", "correct Outlook junk folder, not Spam")Task Interface
Learning Loop
From a real email cleanup session (2026-03-20), managing dan.u@grmcompany.com:
Research/planning phase. See the paper for implementation details of the gated retrieval module.
1 commits
Rust
83.4%
WGSL
16.6%
A Rust-based transformer inference engine with NeuralDB-style knowledge injection, designed for local deployment on consumer GPUs (RTX 2080, 8GB VRAM). Primary use case: intelligent email management with persistent, editable domain knowledge.
Instead of relying on large cloud models with conversational context, use a small distilled model (e.g., QwOpus — Qwen distilled with Opus reasoning) and inject task-specific knowledge directly into the model's weights via a neural Key-Value database. The model "just knows" your domain without needing prompts or RAG.
Existing approaches to injecting knowledge into LLMs:
+-------------------+ +------------------+ +------------------+
| Rust Inference | | NeuralDB KV | | Knowledge |
| Engine |<--->| Store (Gated |<--->| Editor |
| (quantized model)| | Retrieval) | | (CLI/API) |
+-------------------+ +------------------+ +------------------+
| |
v v
+-------------------+ +------------------+
| Task Interface | | Learning Loop |
| (Email/Outlook | | (User feedback |
| add-in, CLI) | | -> KV entries) |
+-------------------+ +------------------+
Rust Inference Engine
NeuralDB KV Store
Knowledge Editor
("aj@jaiglo.com", "legitimate IT provider for GRM, never junk")("elena@jaiglo.com", "spam newsletter, always junk")("dse_NA4@docusign.net", "phishing campaign impersonating Docusign, always junk")("INBOX/Junk Email", "correct Outlook junk folder, not Spam")Task Interface
Learning Loop
From a real email cleanup session (2026-03-20), managing dan.u@grmcompany.com:
Research/planning phase. See the paper for implementation details of the gated retrieval module.
1 commits
Rust
83.4%
WGSL
16.6%