Rendered at 20:15:52 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
ACCount39 23 hours ago [-]
It's an old paper (from 2025, so, a decade ago in AI years), but the concept is still fascinating. And I'm yet to see it show up in any production models.
If multiple models can use cache representations for this kind of enrichment, the KV cache representations of different models must be somewhat compatible.
What stops us then from going a step further, and producing a model family where all models are "KV aligned", and each model can utilize the KV cache of other models directly?
So, an "expensive" reasoning model can use its full faculties to plan, but "delegate" simple subgoals to a smaller model. That smaller model can access the large model's intent directly, as rich KV cache representations - with no prefill recompute and no associated "handover" latency. Or, likewise, a "cheap" small model can generate a diminished but highly compact KV cache that the "expensive" model can then operate on - for example, for skimming a large file for shallow patterns.
Curious to know if anyone is aware of research trying what parent suggested?
movedx01 11 hours ago [-]
Kind of reminds me of this more recent paper: https://arxiv.org/html/2602.02459v1
Different use case and implementation, but a similar idea. In this case applied to sharing last state(not the whole KV cache) from big brain model running in the cloud with a smaller/dumber model running on-device in a robot, in a latancy-aware way.
ACCount39 7 hours ago [-]
Thanks for the link. This is the kind of "edge AI" adaptation that I expect to see more of in the future.
A "local 8B VLA" that runs at high frequency can be sufficient for things like sensor fusion, plan execution and manipulation dynamics, but insufficient for advanced problem solving and in-depth "exception handling". So being able to ask a larger model for steering cues is going to be valuable for AI robots. And that does introduce latency and interface boundaries.
Not sure if the exact approach described there is the way to go, but I do expect something similar to show up in deployments eventually. If nothing else, having this one described does provide a point of comparison.
ayewo 20 hours ago [-]
Sounds similar to Ramp's Latent Briefing for multi-agent coordination.
A few months ago I asked why semantic representation rather than text wasn't used, since natural language seems quite a lossy representation for semantic concepts:
I wouldn't have thought to use it for LLM-to-LLM communication, though
msdz 9 hours ago [-]
My guess is that if you go with something other than readable text as the “thought layer”, observability becomes impossible.
Which is not necessarily something the humans training a model would want re/ alignment.
TeMPOraL 7 hours ago [-]
Indeed this is one of the key problems here. If models start doing CoT in "neuralese", or use it when talking with each other, we lose what little observability we have.
djoldman 6 hours ago [-]
Seems like fundamentally a cool idea but: KV is not context. if the KV cache gets evicted, you'd have to rerun the translation.
Seems like it could still help but also feels like one of those things where it becomes vastly more complex and difficult to debug.
foota 24 hours ago [-]
I feel like multimodal models that can read images should work differently than they do. My understanding is that multimodal models basically first generate an image embedding and then the model is trained to interpret that embedding, but in the same way that text is lossy, it seems like the embedding would be as well. Why don't multimodal models learn to interpret images themselves without an embedding? Or e.g., by passing some "prompt" to the embedding model?
thfuran 24 hours ago [-]
What does interpreting images mean in practice if you exclude the possibility of feature extraction or any other sort of implicit embedding?
foota 23 hours ago [-]
I'm not an ML expert, but I was thinking of a sort of "guided" embedding. E.g., give the image model some prompt for what it's trying to do? I don't understand why multimodal models generate an embedding that doesn't understand what the model is trying to "figure out".
I think this is similar to how Gemma 4 12B is implemented, but even then I don't think the single layer image embedding is "aware" of the context.
cubefox 1 days ago [-]
So the models will not only be using more and more Neuralese in their CoT (like GPT-6), but different agents will also be able to communicate with each other in Neuralese. It's not looking good for monitorability.
sparky_twofort 24 hours ago [-]
Is Neuralese in no way decodable into a human-interpretable system? Genuine question -- I don't know the answer.
23 hours ago [-]
TeMPOraL 6 hours ago [-]
Probably not without a sufficiently powerful LLM from same family, or something equivalent, to act as a translation layer, which includes the risk of the translator lying to you.
Y_Y 23 hours ago [-]
Definitely decodable, that's what's being done now
If multiple models can use cache representations for this kind of enrichment, the KV cache representations of different models must be somewhat compatible.
What stops us then from going a step further, and producing a model family where all models are "KV aligned", and each model can utilize the KV cache of other models directly?
So, an "expensive" reasoning model can use its full faculties to plan, but "delegate" simple subgoals to a smaller model. That smaller model can access the large model's intent directly, as rich KV cache representations - with no prefill recompute and no associated "handover" latency. Or, likewise, a "cheap" small model can generate a diminished but highly compact KV cache that the "expensive" model can then operate on - for example, for skimming a large file for shallow patterns.
Curious to know if anyone is aware of research trying what parent suggested?
A "local 8B VLA" that runs at high frequency can be sufficient for things like sensor fusion, plan execution and manipulation dynamics, but insufficient for advanced problem solving and in-depth "exception handling". So being able to ask a larger model for steering cues is going to be valuable for AI robots. And that does introduce latency and interface boundaries.
Not sure if the exact approach described there is the way to go, but I do expect something similar to show up in deployments eventually. If nothing else, having this one described does provide a point of comparison.
https://x.com/RampLabs/status/2042672773747589588
https://news.ycombinator.com/item?id=47195212
I wouldn't have thought to use it for LLM-to-LLM communication, though
Which is not necessarily something the humans training a model would want re/ alignment.
Seems like it could still help but also feels like one of those things where it becomes vastly more complex and difficult to debug.
I think this is similar to how Gemma 4 12B is implemented, but even then I don't think the single layer image embedding is "aware" of the context.