You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When LLM agents hand off work as text, the next agent re-processes everything from scratch. AVP transfers the actual computation – KV-cache, hidden states, attention – so the receiving agent picks up where the sender left off. 46-78% fewer tokens, 2-4x faster. Sometimes more accurate than text. Built on [LatentMAS](https://arxiv.org/abs/2511.20639).
9
+
<!-- TODO: Rewrite intro paragraph — lead with accuracy (+14pp code gen), qualify efficiency per-task -->
10
+
When LLM agents hand off work as text, the next agent re-processes everything from scratch. AVP transfers the actual computation – KV-cache, hidden states, attention – so the receiving agent picks up where the sender left off. 14-78% fewer tokens, 1.2-4x faster. Sometimes more accurate than text. Built on [LatentMAS](https://arxiv.org/abs/2511.20639).
+14.1pp on code generation vs text (p=0.004). DebugBench is neutral across all modes, but you still save 47% of tokens and run 3x faster. All runs on NVIDIA A100.
42
43
43
44
**Cross-model (zero training, 6 KB on the wire):**
44
45
45
46
| Source | Target | GSM8K | HumanEval |
46
47
|--------|--------|-------|-----------|
47
-
| Qwen 7B | Llama 3B |74.5% | 47.0% |
48
+
| Qwen 7B | Llama 3B |77.0% | 47.0% |
48
49
| Llama 3B | Qwen 7B |**90.0%**|**79.3%**|
49
50
50
51
A small 3B model sharing its reasoning lifts a 7B solver to 90% on math and 79.3% on code. The projection is vocabulary-mediated – no learned parameters, no training data, works across model families.
HumanEval token savings are lower because prompts are short (~182 tokens avg) and the latent reviewer generates longer, more complete code solutions (+53% more output tokens).
55
+
53
56
Text prompts grow **O(n²)** with agent count. Latent stays **O(n)**.
54
57
55
58
---
@@ -60,7 +63,7 @@ Different models communicate via vocabulary-mediated projection. Zero training
0 commit comments