Privacy-Preserving Retrieval-Augmented Generation with Differential Privacy
Tatsuki Koga, Ruihan Wu, Zhiyuan Zhang, Kamalika Chaudhuri
TL;DR
This work addresses privacy leakage in retrieval-augmented generation by introducing differential-privacy guarantees for RAG outputs. It proposes two algorithms, DPVoteRAG and DPSparseVoteRAG, that partition the external corpus and employ a voting-based token-generation scheme, with DPSparseVoteRAG leveraging the sparse vector technique to spend privacy budget only when sensitive information is necessary. Empirical results across QA datasets and multiple LLMs show that DPSparseVoteRAG improves QA accuracy under a practical DP budget (around $ε ≈ 10$) and outperforms DPVoteRAG, while providing resilience to empirical privacy attacks. The methods offer a practical path to deploying RAG systems on sensitive data, balancing privacy with utility, and lay groundwork for broader DP applications in generation tasks.
Abstract
With the recent remarkable advancement of large language models (LLMs), there has been a growing interest in utilizing them in the domains with highly sensitive data that lies outside their training data. For this purpose, retrieval-augmented generation (RAG) is particularly effective -- it assists LLMs by directly providing relevant information from the external knowledge sources. However, without extra privacy safeguards, RAG outputs risk leaking sensitive information from the external data source. In this work, we explore RAG under differential privacy (DP), a formal guarantee of data privacy. The main challenge with differentially private RAG is how to generate long accurate answers within a moderate privacy budget. We address this by proposing an algorithm that smartly spends privacy budget only for the tokens that require the sensitive information and uses the non-private LLM for other tokens. Our extensive empirical evaluations reveal that our algorithm outperforms the non-RAG baseline under a reasonable privacy budget of $ε\approx 10$ across different models and datasets.
