Papers for

chatbot engineers

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.

Confidence scores fail in reasoning tasks for document retrieval

The Magnitude Mirage: Rethinking Confidence for Reasoning-Intensive Retrieval

Abstract: Many production RAG systems implement retrieval abstention by thresholding raw similarity scores, implicitly treating score magnitude as a confidence signal. We demonstrate that this practice degrades systematically as queries require reasoning beyond semantic matching. Across 11 retrieval architectures and 28 datasets, neural retrievers consistently assign high similarity scores to semantically related but constraint-violating documents, causing magnitude-based thresholds to collapse toward near-random abstention performance on logical and temporal reasoning tasks---a failure we term the Magnitude Mirage. To address this without computationally expensive alternatives, we conduct a large-scale empirical study of six zero-cost Query Performance Prediction (QPP) metrics across three cognitive tiers: semantic matching (BEIR), logical reasoning (BRIGHT), and temporal reasoning (TEMPO). Our central finding is that the key improvement comes from abandoning magnitude in favor of score-distribution signals: the gain from this shift exceeds the differences among distributional alternatives by a factor of 5-10$\times$. In particular, Score Gap ($s_1 - s_k$) and a practical adaptation of Score Magnitude and Variance (LSMV) improve abstention AUROC by up to 0.16 in settings where magnitude-based confidence provides little discriminative power. These methods require no additional inference, retraining, or latency, making them a practical zero-cost replacement for magnitude thresholding in deployed RAG systems.

Mon 14 SeptInformation Retrieval
The gist
Sometimes computer systems try to find documents by seeing how similar they are to a question, assuming higher similarity means more confidence in the answer. This approach breaks down for questions that need reasoning, like logic or time-based problems, because the system gives high scores to related but incorrect answers. The authors show this problem happens in many systems and datasets, calling it the Magnitude Mirage. They find better ways to guess confidence by looking at differences between scores, which doesn’t require extra computing and improves decision-making in these tough tasks.
Open 2609.15578v1

Scene aware memory design improves personalized AI agent recall

CreaMem: A Scene-Aware Memory Architecture for Personalized Agents

Abstract: Long-term memory is a core capability for personalized LLM agents. To support it, existing memory systems organize information using various criteria such as topic segments or summary hierarchies. However, we identify two major limitations in these designs. First, they lack scene awareness: memories from unrelated life scenes share the same retrieval space, which inflates the search space and introduces cross-scene interference. Second, they encode each memory from a single perspective, making it difficult to retrieve complementary views of the same event. In this paper, we propose the CreaMem architecture, which enables scene-aware memory organization by partitioning memory into several Life Scene Memories to reduce cross-scene interference at retrieval. To go beyond the single perspective and achieve cross-memory synergy, entries are dual-coded from both episodic and trait-based perspectives within each memory. We further devise a permemory balanced sampling strategy at retrieval time. Extensive experiments on two long-term memory benchmarks show that CreaMem improves QA accuracy across all evaluation metrics, with particularly large gains on multi-hop reasoning performance, validating scene-aware partitioning and cross-memory synergy. To enhance reproducibility, we release our code in a public GitHub repository.

Tue 8 SeptComputation and Language
The gist
Personalized AI assistants need to remember what they learn over time, but current memory systems mix up memories from different situations and only remember one perspective at a time. The authors created a memory design called CreaMem that sorts memories by different life scenes and remembers both what happened and personality traits about them. This helps the AI recall information more accurately, especially when it needs to connect multiple facts. Their tests showed CreaMem makes AI agents better at answering complicated questions.
Open 2609.08550v1