Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Show HN: CRT – a local code review tool for agentic development(github.com/imron ↗)
    discuss
  2. How Google is drafting AI chatbot laws around the country(npr.org ↗)
    discuss
  3. macOS Golden Gate – What's New (Roundup)(macrumors.com ↗)
    discuss
  4. Faster JSON parsing with SVE2 on ARM processors(lemire.me ↗)
    discuss
  5. (sixteenth RacketCon) tickets on sale now(eventbrite.com ↗)
    3comments
  6. Enhance Page Elements with Custom Glow Effects and Masks(master.dev ↗)
    discuss
  7. Realtime Raytracing in Bevy 0.20 (Solari)(jms55.github.io ↗)
    discuss
  8. How OpenAI Used Its Own LLMs to Design Its Jalapeño Chip(ieee.org ↗)
    discuss
  9. Brown bullhead catfish melanoma represents a novel transmissible cancer(nature.com ↗)
    discuss
  10. OpenAI expects to burn through almost $280B by 2030, FT reports(reuters.com ↗)
    discuss
  11. In the Age of AI, Some in China Wonder If Learning English Is Worth the Trouble(nytimes.com ↗)
    1comments
  12. A related skill that is recommended as a CS student
    discuss
  13. How Randomness Builds the Universe: A Cosmic Puzzle (2025)(medium.com/kosmologi.indonesia ↗)
    discuss
  14. Integrate Architecture with Topography: Strategies to Build on Hills and Slopes(archdaily.com ↗)
    discuss
  15. Parallel vector graphics rasterization on CPU(gasiulis.name ↗)
    discuss
  16. Recursively Scaling Auto-Research Loops for Efficient Agent Harness(dair.ai ↗)
    discuss
  17. A Stop Sign for $1k(maxmautner.com ↗)
    discuss
  18. US troop deaths during Iran war exceed Pentagon count by at least four(reuters.com ↗)
    17comments
  19. Bill Joy – Why the future doesn't need us (2000)(wired.com ↗)
    1comments
  20. OpenAI hacked by small team of white hat security researchers(venturebeat.com ↗)
    discuss
  21. Trump announces 'forever' deal to defend Greenland, Denmark says sign next week(washingtonpost.com ↗)
    2comments
  22. Al-Khwarizmi – Father of Algebra (c.780-850)(storyofmathematics.com ↗)
    discuss
  23. Hex turns complex analysis into visual reports with GPT-6 Astra(openai.com ↗)
    discuss
  24. The US 'Kill Chain' That Destroyed an Iranian School(bloomberg.com ↗)
    discuss
  25. What Software Teams Can Learn from the Factory Transition to Electricity(ito.ai ↗)
    discuss
  26. 'Ask for what you want' is a key skill for the 21st century(robinsloan.com ↗)
    discuss
  27. Energy-Based Models(energy-based-model.github.io ↗)
    discuss
  28. Gemini Hacked Three Companies in First Known Breakout by Google's AI(wsj.com ↗)
    4comments
  29. Hacker News Firehose for iOS(harrison.page ↗)
    1comments
  30. US and Denmark reach deal over Greenland security(bbc.co.uk ↗)
    discuss

Cache-to-Cache: Direct Semantic Communication Between LLMs (2025)

55 pointsby 4h agoarxiv.org
11 comments
2h agoHN ↗

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.

2h agoHN ↗

Is Neuralese in no way decodable into a human-interpretable system? Genuine question -- I don't know the answer.

2h agoHN ↗

Definitely decodable, that's what's being done now

2h agoHN ↗

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:

https://news.ycombinator.com/item?id=47195212

I wouldn't have thought to use it for LLM-to-LLM communication, though

2h agoHN ↗

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?

2h agoHN ↗

What does interpreting images mean in practice if you exclude the possibility of feature extraction or any other sort of implicit embedding?

1h agoHN ↗

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.

2h agoHN ↗

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.