Papers for

chatbot designers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

K/V-cache changes affect language model persona without matching word use

K/V-Cache Interventions Dissociate Representation Alignment from Persona Expression in Decoder-Only Language Models

Abstract: We study K/V-cache interventions -- transplanting a target-conditioned K/V trajectory into a source-persona generation -- as a structured surface for persona control in decoder-only language models. Across 13 intervention configurations applied to Llama-3.1-8B for a fixed source-to-target persona pair, we report two consistent dissociations between representation-level alignment and behavioral expression, plus a common failure under position perturbations. First, all layer-band K/V replacements (early, mid, late) achieve strong local V-space alignment (V-gap 0.91, 0.89, 0.84), but only mid-layer replacement (layers 9-20) combines substantial target-marker expression with preserved lexical diversity. Second, full and mid-layer replacement induce comparable alignment (V-gap 0.94 vs. 0.89) yet produce different lexical-diversity profiles (TTR 0.65 vs. 0.77). Third, position perturbations (lag and shuffle) apply distinct operations yet uniformly suppress target-persona expression -- a common behavioral failure rather than a strict dissociation. Representation-level similarity metrics alone are thus not sufficient predictors of downstream persona expression in the regimes we study; the K/V cache emerges as a controllable but structurally constrained intervention surface. Because the transplanted trajectory carries the target's own generated token history, we characterize the intervention as trajectory-level transplantation rather than isolated persona-representation injection; a same-token-sequence control, decoding an identical token sequence under source vs. target conditioning, reproduces the sign and layer localization of the L28 representational shift, indicating the shift is not explained solely by imported token history. These findings characterize representation-behavior dissociation in a high-signal setting rather than establishing universality across models or persona pairs.

Thu 10 SeptComputation and Language
The gist
This study looks at how changing certain internal memory parts in large language models affects their ability to adopt different writing personalities or personas. The researchers found that some memory swaps align internal representations closely but don’t always change the model’s actual word choice like you’d expect. Also, messing with the order of memory entries usually stops the model from showing a target persona reliably. The work shows that just comparing internal model signals doesn’t fully predict how well a model expresses a new persona.
Open 2609.11020v1

Answer path presence impacts accuracy in graph-based question answering

The Answer Path and the Grounding Instruction in LLM Question Answering over Knowledge Graphs

Abstract: A graph retrieval-augmented generation pipeline chooses which triples to put in the prompt, a syntax to write them in, an order to write them in, and a sentence telling the model what to do with them. We vary all four over six large language models and two knowledge-graph question answering benchmarks. Two of the four choices move the answer and the other two are flat. The first is whether the answer path, the triples needed to reach the answer, is in the prompt at all. Holding the number of triples fixed and replacing every triple that is not on the chain with material from an unrelated entity changes answer accuracy by +0.003 F1, while removing the chain costs most of what the graph was worth. Retrieval budget belongs on recall, and precision in the range we can test buys nothing. There is no retriever here: subgraphs come from gold SPARQL, so precision describes the context we build, not a system setting. The second is the grounding instruction. With no facts in the prompt, telling a model to answer using only the provided facts drops F1 from 0.299 to 0.035, a factor of 8.63. That figure describes an evaluation with an empty context arm rather than a working pipeline, and an experiment that applies the instruction to its context arm but not to its no-context baseline manufactures a spurious finding that graph context hurts at depth. We found one in our own results and retract it. Syntax, triple order and subgraph size produce no effect we can measure at multi-hop depth. The comparison that would price the grounding instruction against correct context is not measurable with a format-sensitive scorer, because the instruction determines the response format; we report it as an open contrast rather than a number.

Wed 9 SeptComputation and LanguageInformation Retrieval
The gist
When large language models answer questions using knowledge graphs, including the specific chain of facts that lead to the answer is much more important than simply having a large number of facts in the prompt. The authors found that removing this 'answer path' greatly reduces accuracy, while swapping unrelated facts does not help. Additionally, telling the model to use only the provided facts is crucial when the prompt is empty, or the model performs very poorly. Other factors like how facts are ordered or formatted mattered less. The paper clarifies mistakes from prior work and highlights that giving correct context is vital for good answers.
Open 2609.10237v1

Small language models personalized to user text improve memory simulation

From Retrieval to Weights: Parametric Individualization of Small Language Models with Individual Text Corpora

Abstract: We approach a cognitive simulation perspective on episodic and semantic memory in multiple-choice question answering by incorporating text from individual text corpora (ITC) into retrieval-augmented generation and DoRA fine-tuning. We web-crawl the search histories of 515 participants who answered 36 multiple-choice knowledge items and analyze a stratified subsample of 150 participants. For each participant, one DoRA adapter consolidates their ITC into a small language model (SLM) whose baseline correctness falls below the participants' lowest quartile. The adapter measurably writes the ITC into the weights: it fits its own participant's held-out text better than other participants' texts (dz =1.27), an individuality effect that increases with ITC size in rank order. On the generalized knowledge test, however, the adapter adds knowledge rather than alignment with the individual: log-loss match improves, whereas match accuracy under a bias-corrected PMI readout does not, and retrieval adds nothing on top. Our results demonstrate that ITCs can be consolidated into the weights of SLMs, an encouraging basis for individualized tutoring agents, and we discuss how to move from there toward a realistic simulation of episodic and semantic memory at the individual level.

Wed 9 SeptComputation and LanguageInformation Retrieval
The gist
This work studies how small language models can be personalized by learning from a person’s own text documents, kind of like how our brain remembers facts from our experiences. The authors collected web search histories from hundreds of people answering trivia questions and trained small models to include each person’s text into the model’s internal memory. These personalized models could better predict that same person’s writing, showing the model truly learned from individual data. However, when tested on general knowledge questions, the models added overall knowledge but didn't perfectly match the person’s own knowledge style. This approach helps explore how to build AI that simulates personal memory and could lead to individual tutoring systems.
Open 2609.10155v1