RAG Implementation
Master Retrieval-Augmented Generation (RAG) to build LLM applications that provide accurate, grounded responses using external knowledge sources.
When to Use This Skill
- Building Q&A systems over proprietary documents
- Creating chatbots with current, factual information
- Implementing semantic search with natural language queries
- Reducing hallucinations with grounded responses
- Enabling LLMs to access domain-specific knowledge
- Building documentation assistants
- Creating research tools with source citation
Core Components
1. Vector Databases
Purpose: Store and retrieve document embeddings efficiently
Options:
- Pinecone: Managed, scalable, serverless
- Weaviate: Open-source, hybrid search, GraphQL
- Milvus: High performance, on-premise
- Chroma: Lightweight, easy to use, local development
- Qdrant: Fast, filtered search, Rust-based
- pgvector: PostgreSQL extension, SQL integration
2. Embeddings
Purpose: Convert text to numerical vectors for similarity search
Models (2026):
| Model |
Dimensions |
Best For |
| voyage-3-large |
1024 |
Claude apps (Anthropic recommended) |
| voyage-code-3 |
1024 |
Code search |
| text-embedding-3-large |
3072 |
OpenAI apps, high accuracy |
| text-embedding-3-small |
1536 |
OpenAI apps, cost-effective |
| bge-large-en-v1.5 |
1024 |
Open source, local deployment |
| multilingual-e5-large |
1024 |
Multi-language support |
3. Retrieval Strategies
Approaches:
- Dense Retrieval: Semantic similarity via embeddings
- Sparse Retrieval: Keyword matching (BM25, TF-IDF)
- Hybrid Search: Combine dense + sparse with weighted fusion
- Multi-Query: Generate multiple query variations
- HyDE: Generate hypothetical documents for better retrieval
4. Reranking
Purpose: Improve retrieval quality by reordering results
Methods:
- Cross-Encoders: BERT-based reranking (ms-marco-MiniLM)
- Cohere Rerank: API-based reranking
- Maximal Marginal Relevance (MMR): Diversity + relevance
- LLM-based: Use LLM to score relevance
Quick Start with LangGraph
from langgraph.graph import StateGraph, START, END
from langchain_anthropic import ChatAnthropic
from langchain_voyageai import VoyageAIEmbeddings
from langchain_pinecone import PineconeVectorStore
from langchain_core.documents import Document
from langchain_core.prompts import ChatPromptTemplate
from langchain_text_splitters import RecursiveCharacterTextSplitter
from typing import TypedDict, Annotated
class RAGState(TypedDict):
question: str
context: list[Document]
answer: str
# Initialize components
llm = ChatAnthropic(model="claude-sonnet-5")
embeddings = VoyageAIEmbeddings(model="voyage-3-large")
vectorstore = PineconeVectorStore(index_name="docs", embedding=embeddings)
retriever = vectorstore.as_retriever(search_kwargs={"k": 4})
# RAG prompt
rag_prompt = ChatPromptTemplate.from_template(
"""Answer based on the context below. If you cannot answer, say so.
Context:
{context}
Question: {question}
Answer:"""
)
async def retrieve(state: RAGState) -> RAGState:
"""Retrieve relevant documents."""
docs = await retriever.ainvoke(state["question"])
return {"context": docs}
async def generate(state: RAGState) -> RAGState:
"""Generate answer from context."""
context_text = "\n\n".join(doc.page_content for doc in state["context"])
messages = rag_prompt.format_messages(
context=context_text,
question=state["question"]
)
response = await llm.ainvoke(messages)
return {"answer": response.content}
# Build RAG graph
builder = StateGraph(RAGState)
builder.add_node("retrieve", retrieve)
builder.add_node("generate", generate)
builder.add_edge(START, "retrieve")
builder.add_edge("retrieve", "generate")
builder.add_edge("generate", END)
rag_chain = builder.compile()
# Use
result = await rag_chain.ainvoke({"question": "What are the main features?"})
print(result["answer"])
Detailed patterns and worked examples
Detailed pattern documentation lives in references/details.md. Read that file when the navigation tier above is insufficient.
1---2name: rag-implementation3description: Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases.4---56# RAG Implementation78Master Retrieval-Augmented Generation (RAG) to build LLM applications that provide accurate, grounded responses using external knowledge sources.910## When to Use This Skill1112- Building Q&A systems over proprietary documents13- Creating chatbots with current, factual information14- Implementing semantic search with natural language queries15- Reducing hallucinations with grounded responses16- Enabling LLMs to access domain-specific knowledge17- Building documentation assistants18- Creating research tools with source citation1920## Core Components2122### 1. Vector Databases2324**Purpose**: Store and retrieve document embeddings efficiently2526**Options:**2728- **Pinecone**: Managed, scalable, serverless29- **Weaviate**: Open-source, hybrid search, GraphQL30- **Milvus**: High performance, on-premise31- **Chroma**: Lightweight, easy to use, local development32- **Qdrant**: Fast, filtered search, Rust-based33- **pgvector**: PostgreSQL extension, SQL integration3435### 2. Embeddings3637**Purpose**: Convert text to numerical vectors for similarity search3839**Models (2026):**40| Model | Dimensions | Best For |41|-------|------------|----------|42| **voyage-3-large** | 1024 | Claude apps (Anthropic recommended) |43| **voyage-code-3** | 1024 | Code search |44| **text-embedding-3-large** | 3072 | OpenAI apps, high accuracy |45| **text-embedding-3-small** | 1536 | OpenAI apps, cost-effective |46| **bge-large-en-v1.5** | 1024 | Open source, local deployment |47| **multilingual-e5-large** | 1024 | Multi-language support |4849### 3. Retrieval Strategies5051**Approaches:**5253- **Dense Retrieval**: Semantic similarity via embeddings54- **Sparse Retrieval**: Keyword matching (BM25, TF-IDF)55- **Hybrid Search**: Combine dense + sparse with weighted fusion56- **Multi-Query**: Generate multiple query variations57- **HyDE**: Generate hypothetical documents for better retrieval5859### 4. Reranking6061**Purpose**: Improve retrieval quality by reordering results6263**Methods:**6465- **Cross-Encoders**: BERT-based reranking (ms-marco-MiniLM)66- **Cohere Rerank**: API-based reranking67- **Maximal Marginal Relevance (MMR)**: Diversity + relevance68- **LLM-based**: Use LLM to score relevance6970## Quick Start with LangGraph7172```python73from langgraph.graph import StateGraph, START, END74from langchain_anthropic import ChatAnthropic75from langchain_voyageai import VoyageAIEmbeddings76from langchain_pinecone import PineconeVectorStore77from langchain_core.documents import Document78from langchain_core.prompts import ChatPromptTemplate79from langchain_text_splitters import RecursiveCharacterTextSplitter80from typing import TypedDict, Annotated8182class RAGState(TypedDict):83 question: str84 context: list[Document]85 answer: str8687# Initialize components88llm = ChatAnthropic(model="claude-sonnet-5")89embeddings = VoyageAIEmbeddings(model="voyage-3-large")90vectorstore = PineconeVectorStore(index_name="docs", embedding=embeddings)91retriever = vectorstore.as_retriever(search_kwargs={"k": 4})9293# RAG prompt94rag_prompt = ChatPromptTemplate.from_template(95 """Answer based on the context below. If you cannot answer, say so.9697 Context:98 {context}99100 Question: {question}101102 Answer:"""103)104105async def retrieve(state: RAGState) -> RAGState:106 """Retrieve relevant documents."""107 docs = await retriever.ainvoke(state["question"])108 return {"context": docs}109110async def generate(state: RAGState) -> RAGState:111 """Generate answer from context."""112 context_text = "\n\n".join(doc.page_content for doc in state["context"])113 messages = rag_prompt.format_messages(114 context=context_text,115 question=state["question"]116 )117 response = await llm.ainvoke(messages)118 return {"answer": response.content}119120# Build RAG graph121builder = StateGraph(RAGState)122builder.add_node("retrieve", retrieve)123builder.add_node("generate", generate)124builder.add_edge(START, "retrieve")125builder.add_edge("retrieve", "generate")126builder.add_edge("generate", END)127128rag_chain = builder.compile()129130# Use131result = await rag_chain.ainvoke({"question": "What are the main features?"})132print(result["answer"])133```134135## Detailed patterns and worked examples136137Detailed pattern documentation lives in `references/details.md`. Read that file when the navigation tier above is insufficient.138