Enhancing RAG with Contextual Retrieval
Note: For more background information on Contextual Retrieval, including additional performance evaluations on various datasets, we recommend reading our accompanying blog post(opens in new tab).
Retrieval Augmented Generation (RAG) enables Claude to leverage your internal knowledge bases, codebases, or any other corpus of documents when providing a response. Enterprises are increasingly building RAG applications to improve workflows in customer support, Q&A over internal company documents, financial & legal analysis, code generation, and much more.
In a separate guide(opens in new tab), we walked through setting up a basic retrieval system, demonstrated how to evaluate its performance, and then outlined a few techniques to improve performance. In this guide, we present a technique for improving retrieval performance: Contextual Embeddings.
In traditional RAG, documents are typically split into smaller chunks for efficient retrieval. While this approach works well for many applications, it can lead to problems when individual chunks lack sufficient context. Contextual Embeddings solve this problem by adding relevant context to each chunk before embedding. This method improves the quality of each embedded chunk, allowing for more accurate retrieval and thus better overall performance. Averaged across all data sources we tested, Contextual Embeddings reduced the top-20-chunk retrieval failure rate by 35%.
The same chunk-specific context can also be used with BM25 search to further improve retrieval performance. We introduce this technique in the "Contextual BM25" section.
In this guide, we'll demonstrate how to build and optimize a Contextual Retrieval system using a dataset of 9 codebases as our knowledge base. We'll walk through:
-
Setting up a basic retrieval pipeline to establish a baseline for performance.
-
Contextual Embeddings: what it is, why it works, and how prompt caching makes it practical for production use cases.
-
Implementing Contextual Embeddings and demonstrating performance improvements.
-
Contextual BM25: improving performance with contextual BM25 hybrid search.
-
Improving performance with reranking,
Evaluation Metrics & Dataset:
We use a pre-chunked dataset of 9 codebases - all of which have been chunked according to a basic character splitting mechanism. Our evaluation dataset contains 248 queries - each of which contains a 'golden chunk.' We'll use a metric called Pass@k to evaluate performance. Pass@k checks whether or not the 'golden document' was present in the first k documents retrieved for each query. Contextual Embeddings in this case helped us to improve Pass@10 performance from ~87% --> ~95%.
You can find the code files and their chunks in data/codebase_chunks.json and the evaluation dataset in data/evaluation_set.jsonl
Additional Notes:
Prompt caching is helpful in managing costs when using this retrieval method. This feature is currently available on Anthropic's first-party API, and is coming soon to our third-party partner environments in AWS Bedrock and GCP Vertex. We know that many of our customers leverage AWS Knowledge Bases and GCP Vertex AI APIs when building RAG solutions, and this method can be used on either platform with a bit of customization. Consider reaching out to Anthropic or your AWS/GCP account team for guidance on this!
To make it easier to use this method on Bedrock, the AWS team has provided us with code that you can use to implement a Lambda function that adds context to each document. If you deploy this Lambda function, you can select it as a custom chunking option when configuring a Bedrock Knowledge Base(opens in new tab). You can find this code in contextual-rag-lambda-function. The main lambda function code is in lambda_function.py.
Table of Contents
-
Setup
-
Basic RAG
-
Contextual Embeddings
-
Contextual BM25
-
Reranking
Setup
Before starting this guide, ensure you have:
Technical Skills:
- Intermediate Python programming
- Basic understanding of RAG (Retrieval Augmented Generation)
- Familiarity with vector databases and embeddings
- Basic command-line proficiency
System Requirements:
- Python 3.8+
- Docker installed and running (optional, for BM25 search)
- 4GB+ available RAM
- ~5-10 GB disk space for vector databases
API Access:
- Anthropic API key(opens in new tab) (free tier sufficient)
- Voyage AI API key(opens in new tab)
- Cohere API key(opens in new tab)
Time & Cost:
- Expected completion time: 30-45 minutes
- API costs: ~$5-10 to run through the full dataset
Libraries
We'll need a few libraries, including:
-
anthropic- to interact with Claude -
voyageai- to generate high quality embeddings -
cohere- for reranking -
elasticsearchfor performant BM25 search -
pandas,numpy,matplotlib, andscikit-learnfor data manipulation and visualization
Environment Variables
Ensure the following environment variables are set:
We define our model names up front to make it easier to change models as new models are released
We'll start by initializing the Anthropic client that we'll use for generating contextual descriptions.
Initialize a Vector DB Class
We'll create a VectorDB class to handle embedding storage and similarity search. This class serves three key functions in our RAG pipeline:
- Embedding Generation: Converts text chunks into vector representations using Voyage AI's embedding model
- Storage & Caching: Saves embeddings to disk to avoid re-computing them (which saves time and API costs)
- Similarity Search: Retrieves the most relevant chunks for a given query using cosine similarity
For this guide, we're using a simple in-memory vector database with pickle serialization. This makes the code easy to understand and requires no external dependencies. The class automatically saves embeddings to disk after generation, so you only pay the embedding cost once.
For production use, consider hosted vector database solutions.
The VectorDB class below follows the same interface patterns you'd use with production solutions, making it easy to swap out later. Key features include batch processing (128 chunks at a time), progress tracking with tqdm, and query caching to speed up repeated searches during evaluation.
Now we can use this class to load our dataset
Processing chunks: 100%|██████████| 737/737 [00:00<00:00, 985400.72it/s] Embedding chunks: 100%|██████████| 737/737 [00:42<00:00, 17.28it/s] Vector database loaded and saved. Total chunks processed: 737
Basic RAG
To get started, we'll set up a basic RAG pipeline using a bare bones approach. This is sometimes called 'Naive RAG' by many in the industry. A basic RAG pipeline includes the following 3 steps:
-
Chunk documents by heading - containing only the content from each subheading
-
Embed each document
-
Use Cosine similarity to retrieve documents in order to answer query
Now let's establish our baseline performance by evaluating the basic RAG system. We'll test at k=5, 10, and 20 to see how many of the golden chunks appear in the top retrieved results. This gives us a benchmark to measure improvement against.
============================================================ Evaluation Results: Contextual Embeddings ============================================================ Evaluating Pass@5... Evaluating retrieval: 100%|██████████| 248/248 [00:03<00:00, 65.26it/s] Evaluating Pass@10... Evaluating retrieval: 100%|██████████| 248/248 [00:03<00:00, 64.87it/s] Evaluating Pass@20... Evaluating retrieval: 100%|██████████| 248/248 [00:03<00:00, 64.72it/s] ============================================================ Metric Pass Rate Score ------------------------------------------------------------ Pass@5 80.92% 0.8092 Pass@10 87.15% 0.8715 Pass@20 90.06% 0.9006 ============================================================
These results show our baseline RAG performance. The system successfully retrieves the correct chunk 81% of the time in the top 5 results, improving to 87% in the top 10, and 90% in the top 20.
Contextual Embeddings
With basic RAG, individual chunks often lack sufficient context when embedded in isolation. Contextual Embeddings solve this by using Claude to generate a brief description that "situates" each chunk within its source document. We then embed the chunk together with this context, creating richer vector representations.
For each chunk in our codebase dataset, we pass both the chunk and its full source file to Claude. Claude generates a concise explanation of what the chunk contains and where it fits in the overall file. This context gets prepended to the chunk before embedding.
Cost and Latency Considerations
When does this cost occur? The contextualization happens once at ingestion time, not during every query. Unlike techniques like HyDE (hypothetical document embeddings) that add latency to each search, contextual embeddings are a one-time cost when building your vector database. Prompt caching makes this practical. Since we process all chunks from the same document sequentially, we can leverage prompt caching for significant savings.
- First chunk: We write the full document to cache (pay a small premium)
- Subsequent chunks: Read the document from cache (90% discount on those tokens)
- Cache lasts 5 minutes, plenty of time to process all chunks in a document
Cost example: For 800-token chunks in 8k-token documents with 100 tokens of generated context, the total cost is $1.02 per million document tokens. You'll see the cache savings in the logs when you run the code below.
Note: Some embedding models have fixed input token limits. If you see worse performance with contextual embeddings, your contextualized chunks may be getting truncated—consider using an embedding model with a larger context window.
Let's see an example of how contextual embeddings work by generating context for a single chunk. We'll use Claude to create a situating context, and you'll also see the prompt caching metrics in action.
Situated context: This chunk contains the module documentation and initial struct definition for a differential fuzzing executor. It introduces the `DiffExecutor` struct that wraps two executors (primary and secondary) to run them sequentially with the same input, comparing their behavior for differential testing. The chunk establishes the core data structure and imports needed for the differential fuzzing implementation. ---------- Input tokens: 3412 Output tokens: 76 Cache creation input tokens: 0 Cache read input tokens: 0
Building the Contextual Vector Database
Now that we've seen how to generate contextual descriptions for individual chunks, let's scale this up to process our entire dataset. The ContextualVectorDB class below extends our basic VectorDB with automatic contextualization during ingestion.
