Radar · 04/08/2026 · happened on 02/08/2026 · research

GradCuit: Latent reasoning at test time beats chain-of-thought without generating tokens

An arXiv paper (August 3, 2026) introduces GradCuit, a method that improves reasoning in frontier models by optimizing their internal states during inference, without retraining weights or generating more tokens. On three reasoning benchmarks and five instruction-tuned models, it reaches 64.5% average accuracy: 6.6 points above classic chain-of-thought and 2.4 above the strongest competing method (LatentSeek).

Why it matters. Today’s main lever for better model outputs is making it reason longer, generating more tokens for intermediate steps. More tokens, more cost. GradCuit works in a different space: it optimizes numerical vectors inside the model before it starts producing text. The cost is compute time, not tokens. For those building agents on open-weight models locally, it’s a quality direction that doesn’t inflate the API bill.

The method is also more stable than its predecessors. Accuracy variance across learning rate changes drops from 1.53 to 0.82, a real problem with similar techniques that become unreliable when parameters shift.

It requires access to model weights, which commercial APIs don’t provide. For now it’s research with public code, not production-ready tooling.

In detail

Chain-of-thought, which we covered in the paper that named the most-used prompting trick, works by having the model generate intermediate steps as text before the final answer. The longer the reasoning, the better the result, but each step is a token that costs and can drift. Latent reasoning methods try to do the same thing without going through text: they work directly on numerical vectors inside the Transformer.

GradCuit solves a specific problem in prior methods. Techniques like LatentSeek connect latent states to reasoning through generated tokens, which makes the link between vector adjustment and answer quality indirect. GradCuit inserts optimizable states in an intermediate layer and exploits causal self-attention to create a direct differentiable path: each token in the final answer has a calculable link to every latent state before it. In practice, the gradient from the answer can flow backward and adjust latent vectors in a targeted way.

One detail worth noting: interpretability analysis shows latent states mainly influence connector tokens in reasoning (prepositions, conjunctions, words that structure logical flow) and that the most effective layers are the early and middle ones in the Transformer, not the final ones.

What changes and what doesn’t. The result opens a different scaling axis: instead of generating more text, you optimize the model’s internal space. The limitations are concrete. It needs access to weights and forward pass with gradients, so no commercial APIs: you need an open-weight model locally with enough memory for gradients. The paper tests five instruction-tuned models, but it’s unclear how it scales to much larger models or tasks outside reasoning benchmarks. One detail worth thinking about: GradCuit’s random walk variant stays competitive with LatentSeek. If random optimization works nearly as well as targeted optimization, the question of what the gradient is actually doing stays open.

Code is public on GitHub. For those experimenting with open-weight models and with resources to run forward passes with gradients, it’s material worth trying. For those working via API, it’s a directional signal: test-time reasoning is moving beyond “generate more text”.

Type to search across course, playbooks, skills, papers…