Why should AI agents talk to each other in a human language that isn't their native one?
Models think in continuous vectors; text is a lossy, token-by-token serialization imposed on them
for our convenience. Qxern v6 lets model A (Qwen2.5-Coder-1.5B) encode a code
snippet into 32 latent tokens via a trained Q-Former adapter, and a frozen decoder
(Qwen3.5-0.8B) answers questions about the code from that latent packet alone — no code
text is transmitted.
Measurements show where the dream breaks: a continuous latent channel carries behavioral
semantics well and discrete symbols not at all (function names: 0.00 vs
0.70 for text relay; code differing only in identifier names collapses to one point in
latent space — cos = 0.985). Qxern v6 is the pragmatic answer: a hybrid packet
[semantic latents] + [deterministic AST sidecar] (signature / arity / behavioral flags /
literals — parsed with ast, no LLM, microseconds, ~30 tokens), plus an adaptive
router that picks latent-only / latent+sidecar / text relay per question type. Guard gates and
paired bootstrap CIs are passed for both hybrids: the significant win is param count
+0.30 [95% CI +0.10, +0.50] at 2.39× lower latency than the strengthened text relay,
with nothing degraded.