Jev from @typesafeai is now live on @CloudflareDev AI Gateway. Try the first System One model — send state and typed questions; get structured answers your code can use directly. https://t.co/yLYH6Sigvh
LLMs can now talk to each other without words.
Chinese researchers open-sourced a new paradigm that lets LLMs communicate without generating a single word.
It’s called Cache-to-Cache (C2C) communication.
right now, when multiple ai agents work together, they are forced to translate their internal "thoughts" into human text tokens just to pass a message. this loses rich semantic meaning and causes massive token-by-token latency.
So, instead of spitting out words, c2c uses a neural network to directly project and fuse the source model's "kv-cache" right into the target model. it is pure, direct semantic communication.. they even added a learnable gating mechanism to select exactly which layers benefit most from the cache transfer.
the benchmark results are actually crazy:
- avoids all intermediate text generation latency
- accuracy jumps by up to 14.2% compared to individual models
- beats traditional text-based agent communication by over 5%
- delivers a massive 2.5x speedup in overall speed
we are literally watching llms bypass human language to build their own silent, high-speed neural network..