Prompt Perturbation in Retrieval-Augmented Generation based Large Language Models
Zhibo Hu, Chen Wang, Yanfeng Shu, Helen, Paik, Liming Zhu
TL;DR
The paper investigates robustness of Retrieval-Augmented Generation (RAG) LLMs to prompt perturbations and shows that small prefixes can steer retrieval toward targeted incorrect passages. It introduces Gradient Guided Prompt Perturbation (GGPP) to craft prefixes that align the perturbed query embedding $\mathbf{e}_{u'} = \mathcal{M}(a || u)$ with a target passage embedding $\mathbf{e'}$, while pushing the original passage away. It also develops two detectors, SATe and ACT, to detect GGPP-induced perturbations by examining neuron activations, particularly in the last layer, and demonstrates their effectiveness across open-source LLMs. Experiments across multiple datasets and embedding models show high perturbation success rates for GGPP and robust detection performance, with ACT offering a favorable efficiency-profile for deployment. The findings highlight important robustness considerations for RAG systems and provide practical guardrails to defend against retrieval-level adversarial prompts.
Abstract
The robustness of large language models (LLMs) becomes increasingly important as their use rapidly grows in a wide range of domains. Retrieval-Augmented Generation (RAG) is considered as a means to improve the trustworthiness of text generation from LLMs. However, how the outputs from RAG-based LLMs are affected by slightly different inputs is not well studied. In this work, we find that the insertion of even a short prefix to the prompt leads to the generation of outputs far away from factually correct answers. We systematically evaluate the effect of such prefixes on RAG by introducing a novel optimization technique called Gradient Guided Prompt Perturbation (GGPP). GGPP achieves a high success rate in steering outputs of RAG-based LLMs to targeted wrong answers. It can also cope with instructions in the prompts requesting to ignore irrelevant context. We also exploit LLMs' neuron activation difference between prompts with and without GGPP perturbations to give a method that improves the robustness of RAG-based LLMs through a highly effective detector trained on neuron activation triggered by GGPP generated prompts. Our evaluation on open-sourced LLMs demonstrates the effectiveness of our methods.
