Fetching from the wire…
Public story · 2026-08-04 · high
PRECOG pre-encodes documents into a state-space model's hidden state, skipping reprocessing at query time entirely.
Why now: The paper's arXiv identifier, 2608.02560, dates the posting to August 2026.
PRECOG cuts the time a retrieval-augmented model needs to process a document from 27 seconds to under 6 milliseconds, per arXiv 2608.02560.
That's the tax every RAG system pays: re-running full documents through the model at query time. Collapsing it by roughly 4,500x changes what retrieval at scale can cost.
The trick exploits a property unique to SSMs. Their recurrent hidden state is fixed-size and doesn't care about token position, so it works as a complete summary of whatever text it's read. That means a whole corpus can get encoded once, offline, and dropped into a query later instead of reprocessed every time.
The authors tested it on TENNs-LLM, a 1.2B-parameter gated SSM with a 192 KB hidden state. It matched in-context RAG quality while dropping prefill from O(L) to O(1), turning a cost that scales with document length into a flat one.
Transformers don't get this option. Their KV-cache is entangled with token position and grows linearly with input length, and the authors call porting PRECOG's approach to Transformers architecturally impossible.
PRECOG is really an argument for switching to state-space models, not a caching trick any RAG team can bolt onto a Transformer stack.
The only evidence so far is a single 1.2B-parameter model. Whether the trade holds at frontier scale is untested.
Each link below shares sources, entities, or timing with this story.
Satya Nadella said companies routing everything through a single proprietary lab may not survive. His argument: you hand that lab your most sensitive business context, and the lab can turn it against you as a competitor. His prescription is an orchestration layer — keep the ha...
After 20+ years maintaining Paint.NET, Rick Brewster concluded WINE's Direct2D would never be complete enough for what he needed, so the app now carries its own from-scratch reverse-engineered Direct2D implementation. He puts it at 180,000 lines against 700,000 for the rest of...
READ (arXiv 2608.06305, submitted August 6) took a 780-page government financial report and asked 51 verified questions. Top-k embedding retrieval answered 15.7% of them correctly. The same agent loop, given three deterministic tools over MCP instead of a vector index, answere...
Allen Bargi's August 15 post hit 302 points arguing that AI collaboration rewards context-sharing, examples, and feedback over precise instruction (Hacker News). The pushback holds that the piece conflates management with leadership. mikeocool calls it "the most low effort ver...
Willison launched datasette-apps (0.1a2) on June 18, hosting self-contained HTML+JS apps in a sandboxed iframe that run SQL against your data, read-only by default. He frames it as "Claude Artifacts reimagined for Datasette," artifacts backed by a JSON API to a relational data...
His conclusion is DuckDB matches or beats SQLite's safety for untrusted queries, but only with enable_external_access=false, lock_configuration=true, and a watchdog thread, since DuckDB lacks SQLite's opcode-based query timeouts. He ships a safe_duckdb.py helper and a Datasett...
MindPattern daily
One email a day at 7 AM. Sources and a take on every story. Unsubscribe anytime.