Resources

Glossary

The vocabulary that shows up across these docs, in one place.

Core concepts

Shard
The prior proven decentralized inference engine NoviQ inherits from - correctness receipts and a fast WAN pipeline. NoviQ owns the privacy problem Shard left open.
Sharded inference
Splitting a model into contiguous layer blocks across machines so no single node holds the whole model.
Stage / block
A contiguous range of transformer layers assigned to one worker.
ModelRuntime
The model-agnostic, per-node interface for serving a block: head embeds, middle forwards hidden states, tail produces logits.
Sealed wire
The framed, authenticated-encrypted channel between nodes: a JSON header plus raw tensor bytes, sealed with ChaCha20-Poly1305.

Privacy terms

Reconstruction adversary
The attacker that maps the activations a node processes back to the user's input tokens. The metric is the fraction of tokens recovered.
Boundary pinning
Keeping the embedding and final layers on trusted nodes. Necessary but, on its own, not sufficient.
Edge containment
Ensuring raw token ids never leave the trusted head.
Activation obfuscation
A per-request secret signed permutation of the hidden dimension that lets untrusted nodes compute in a scrambled basis via conjugated weights.
Privacy receipt
The record of defenses, per-node recovery scores, the worst untrusted recovery, and whether it passed the declared threshold.
worst_untrusted_recovery
The load-bearing receipt field: the maximum token recovery across all nodes not marked trusted.
Trust tier
A node's trust level - operator, staked, or volunteer - which decides where it can sit in the pipeline.

Network terms

Orchestrator
The control plane that authenticates, dispatches jobs, and meters token counts.
Worker class
Native (local Ollama GPU) or browser (WebGPU / WebLLM). Swarm-block workers arrive with the v2 engine.
Single-node vs swarm
v1 runs a full model on one worker; v2 runs a layer pipeline across many workers.
Gate
A concrete, runnable check that must pass before the project advances: A correctness, B WAN, C cache, D privacy.
Receipt attestation
The trust level of a receipt. Default is self-reported; verification checks internal consistency, not trusted hardware.
Real yield
Rewards funded from actual paid inference revenue, not inflationary token emissions.