How State Crosses the Prompt-Response Boundary
RLT's core mechanical change is what happens at the seam between a prompt and a model's response. A causal encoder first builds a global key-value memory from the input. A recurrent decoder then combines that memory with sliding-window attention and, critically, feedback from its own previous final hidden state - and that state is never reset when the model crosses from reading the prompt into generating a response [1]. The same recurrent state transition is intended to apply uniformly across pretraining, supervised fine-tuning, sampling, and current-policy reinforcement-learning replay, which the design frames as a way to remove inconsistencies that normally creep in when a model is trained one way and served another [2]. That unification is the paper's stated ambition; whether it actually holds up under real training runs is untested.
