Notes · Method note 03
Two language models normally talk through text: the first decodes its state into tokens, the second re-encodes them. Latent communication skips the round trip. The sender's hidden states or KV cache go straight into the receiver through a small bridge, and both models stay frozen. Fifteen papers since 2024 do a version of this at 0.5B–14B; a startup, Mostik, now claims it from a 753B sender into a 4B receiver. The last tab takes the same design to diffusion: a block-diffusion head on a frozen AR trunk is the bridge with a diffusion receiver, and it is the fastest lossless decoder there is.
\(\theta\) is the only knob, and it is small. Zero parameters when sender and receiver are the same model, about 1% of the combined pair in the Bicameral model, 3.8% of the receiver (264M) in XBridge. Everything else about the two models is untouched, which is the whole point: the bridge is retrained, not the models.
| Paper | What is sent | Bridge and fusion | Trained | Models | Against text |
|---|---|---|---|---|---|
| CIPHER · Liu et al., ICLR 2024 | expected embedding: the output distribution's weighted sum of the embedding table | none; concatenated as input | no | same model, debate setting | +0.5–5.0 points over natural-language debate on five reasoning tasks |
| LLM-to-SLM · Bergner et al., 2024 | the large model's encoding of the whole prompt | projector; small model conditions on projected states | projector + small model; large model frozen | encoder LLM → small encoder-decoder or decoder-only | vs the LLM itself: up to 4× faster, 1–2 points lower |
| Activation communication (AC) · Ramesh & Li, 2025 | hidden state of the last token at a chosen layer | identity; added into the receiver at the same layer mid-forward | no | same model as sender and receiver | +27% on coordination and reasoning at under ¼ of the compute |
| Mixture of Thoughts · Fein-Ashley et al., 2025 | hidden states of the top-K routed experts | interaction layers project every expert into one shared space; the primary expert cross-attends | router + interaction layers | heterogeneous open models, first cross-architecture method without pairwise translators | vs routing and aggregation baselines, in- and out-of-distribution |
| Cache-to-Cache (C2C) · ICLR 2026 | the sender's whole KV cache | per-layer projection + gated fuser into the receiver's cache | fuser only; both models frozen | Qwen2.5-0.5B, Llama3.2-1B, Qwen3-4B → Qwen3-0.6B | +3–5 points, 2× faster; +8.5–10.5 over the receiver alone |
| KVComm · Wang et al., ICLR 2026 | a subset of KV pairs picked by attention importance with a Gaussian layer prior | none; prepend | no | same model | matches the full-cache upper bound at up to 3× less communication |
| Thought Communication · Zheng et al., 2025 | latent “thoughts” recovered from hidden states, with an identifiability result | learned encoder; gated exposure of shared and private thoughts | encoder | — | improves over text collaboration |
| Interlat · Du et al., ACL 2026 | last-layer hidden states | learned compression / projection; concatenated along the token axis | compressor; models frozen | heterogeneous | beats fine-tuned CoT and single-agent; up to 24× faster with compression |
| LatentMAS · Zou, Yang et al., 2025 | autoregressive latent thoughts (last-layer embeddings) plus a shared KV working memory | none; prefill + decode cache exposed | no | Qwen3 4B / 8B / 14B, same backbone | +2.8–4.6 points over text MAS, 71–84% fewer output tokens, 4× faster |
| Vision Wormhole · 2026 | the reasoning trace rendered through a universal visual codec | codec; the receiver is a VLM that reads it as an image | codec, label-free distillation | fully heterogeneous, cross-architecture | — |
| Bicameral model · Flamant, Ghai, Shimizu, 2026 | intermediate activations, both directions, every decoding step | translation network + learned suppression gate | ≈1% of combined params; bases frozen | pairs of 0.5–0.6B models, one coupled to a tool | vs unaugmented: arithmetic 36 → 96%, 1.7× on ZebraLogic |
| Beyond Tokens · survey, 2026 | Taxonomy of the field along three axes: what (embeddings, hidden states, KV caches), which (sender–receiver and layer alignment), how (concat, prepend, add, cross-attention, cache restoration). Notes that most methods assume a shared backbone, that cross-architecture bridges are rare and always trained, and that size asymmetry is not studied. | ||||
| XBridge · Yang et al., Aug 2026 | sender hidden states plus lexical anchors mapped into the receiver's vocabulary | gated cross-attention: the receiver queries the sender's states | 264M params, 3.8% of the receiver | Llama, Qwen, Mistral pairs | beats text on 7/7 tasks per pair, 11× lower latency; beats KV sharing on 6/7 same-family |
| StateBridge · Peng et al., Aug 2026 | final-layer hidden states | closed-form orthogonal map + norm calibration + vocabulary anchoring; prepended as a continuous prefix | no | four models from two families | best or tied on 22/26 model–task pairs, incl. vs trained projectors |
| Mostik · web page, Sep 2026 | hidden states (“two megabytes of internal state” per token) | “a small trained bridge”; fusion not described | bridge only; both models frozen | GLM-5.2 753B → Qwen-3.5 4B | claims ≈10 points over a text hand-off, half the gap to the large model closed, 2.5× cheaper than a mid-size model; no paper |
Latent chain-of-thought inside one model (Coconut, Hao et al. 2024) is the same trick applied step to step rather than model to model; the survey keeps the two apart, and so does this table.
“Converting” can mean rewriting the AR weights into a diffusion LM, or keeping the AR model frozen and attaching a diffusion decoder that reads its latents. The bridge design maps onto the second cleanly, and that version already exists: it is DFlash, the fastest lossless speculative decoder published, and it is the MTP head widened from one token to a block.
k mask slots in one non-causal forward pass instead of k autoregressive draft steps. The target verifies the block as in ordinary speculative decoding, so the output distribution is unchanged. DFlare keeps the design and gives every draft layer its own mix of target layers instead of one shared fusion.| Method | Start | Budget | Trick | Result |
|---|---|---|---|---|
| DiffuGPT / DiffuLLaMA · ICLR 2025 | GPT-2, LLaMA-2 7B | continued pretraining, tens of billions of tokens | attention-mask annealing from causal to full; shifted targets | first 7B-class adapted diffusion LM |
| Dream 7B · 2025 | Qwen2.5-7B | 580B tokens | shift operation kept from AR; context-adaptive token-level noise rescheduling | strongest open 7B full-attention diffusion LM at release |
| SDAR · 2025 | Qwen3 1.7B – 30B-A3B | 50B tokens at 30B | blockwise diffusion, brief adaptation after AR pretraining | AR-level quality with parallel decoding inside blocks |
| Fast-dLLM v2 · 2025 | Qwen2.5 | ≈1B tokens | block diffusion with a complementary attention mask; hierarchical block + sub-block KV cache | matches AR accuracy, up to 2.5× faster than AR decoding; 500× less adaptation data than Dream |
| LLaDA 2.0 · Dec 2025 | Ling AR models, 16B and 100B | warmup–stable–decay schedule | treat the AR model as block diffusion with block size 1, grow it 1 → 4 → 32 → 64 → 4096, train, then decay back to small blocks for inference | first 100B diffusion LM |
| NBDiff-7B · Dec 2025 | off-the-shelf 7B AR | — | causal attention kept on the prefix; AR guidance during adaptation; gradual block growth | state of the art among 7B diffusion LMs |
| Don't Retrain, Align · May 2026 | any AR model, frozen as teacher; same architecture | — | masked denoising plus a per-layer cosine alignment of the diffusion model's hidden states to the frozen AR model's | up to 4× faster conversion, largest gain in low-data regimes |