惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
RAG Systems with Claude: From Documentation to Production
Shoaib Iqbal · 2026-06-22 · via DEV Community

Shoaib Iqbal

Meta: Build production-grade RAG systems using Claude and vector search. Step-by-step guide to document retrieval, embedding, and cost optimization.

The Problem: How Do You Give Claude Your Company's Knowledge?

Claude has a 200K token context window—it can hold an entire book. But what if you need to:

  • Answer questions about docs that change monthly
  • Search across thousands of documents efficiently
  • Stay up-to-date without retraining
  • Control costs (processing 10MB of text every request is expensive)

A naive approach: throw everything into the prompt. This fails because:

  • You can't practically include all documents
  • Costs explode as documents grow
  • Irrelevant context confuses the model
  • Updates require new deployments

This is the RAG problem: Retrieval-Augmented Generation.

The Solution: Retrieve Relevant Context, Then Generate

RAG works in two steps:

1. RETRIEVAL: User asks a question
   → Search your documents for relevant context
   → Return top-5 most similar passages

2. GENERATION: Feed Claude the question + retrieved context
   → Claude answers based on your documents
   → Returns answer with citations

This is powerful because:

  • Only relevant documents are processed (low cost)
  • Your docs can be updated independently
  • Answers are grounded in your knowledge
  • Fully auditable (you see which docs were used)

How Techcologic Builds RAG Systems

We use a three-layer architecture:

Layer 1: Embedding & Vector Search

Step 1: Chunk your documents into passages (500-1000 tokens each)

Document: "Claude API Overview.pdf" (200 pages)

Chunks: [
  "Claude is a large language model trained by Anthropic...",
  "To use Claude, you need an API key from...",
  "Claude 3 family includes Opus, Sonnet, and Haiku...",
  ... (200+ chunks)
]

Step 2: Convert chunks to embeddings

Embedding Service: text-embedding-3-small (or Claude's embedding)
Chunk: "Claude is a large language model..."

Vector: [0.123, -0.456, 0.789, ..., 0.234] (1536 dimensions)

Step 3: Store in vector database

Database: pgvector (PostgreSQL + vector extension)
        OR Pinecone, Weaviate, Milvus (cloud)

Table: documents
├─ id: chunk_id
├─ text: "Claude is a..."
├─ vector: [embeddings]
├─ source: "Claude API Overview.pdf"
└─ updated_at: 2024-06-15

Layer 2: Retrieval on Query

When a user asks a question:

# 1. Embed the user's question
user_question = "How do I use Claude with streaming?"
query_vector = embed_model.embed(user_question)

# 2. Find similar documents in your database
similar = vector_db.search(
    query_vector,
    top_k=5,
    min_similarity=0.7
)

# 3. Result: Top-5 passages from your docs
retrieved = [
    {
        "text": "Claude supports streaming via server-sent events...",
        "source": "API Guide.pdf",
        "similarity": 0.94
    },
    ... (4 more)
]

Layer 3: Generation with Claude

# Construct the augmented prompt
prompt = f"""
Use the following context from Techcologic documentation:

{retrieved_context}

User question: {user_question}

Answer the question using ONLY the context above.
If the answer isn't in the context, say: "I don't have information on this."
Include citations: (Source: document_name)
"""

# Call Claude with your knowledge
response = claude.message(prompt, max_tokens=500)

Real Example: Internal Knowledge Base

Scenario: Techcologic's 50-page engineering handbook, constantly updated.

Without RAG:

  • Include entire handbook in every prompt (150K tokens)
  • Cost: $2.25 per query (expensive!)
  • Fails when handbook exceeds context window

With RAG (Techcologic approach):

  • Store handbook chunks in vector database
  • Retrieve only relevant sections per query (2-5K tokens)
  • Cost: $0.03 per query (75x cheaper!)
  • Handbook can grow unlimited

Comparison Table:

Approach Cost per Query Latency Scalability Updates
Naive (full context) $2-5 5-10s Limited to token window Requires redeploy
RAG with pgvector $0.02-0.05 1-2s Unlimited docs Instant
RAG + caching $0.005-0.01 <500ms Unlimited docs Instant

Building RAG Step-by-Step

Step 1: Prepare Documents

1. Collect your documents (PDFs, Markdown, text)
2. Extract text (PyPDF2, pdfplumber for PDFs)
3. Chunk into 500-1000 token pieces
4. Store in database with metadata

Step 2: Set Up Vector Database

Option A: PostgreSQL + pgvector (self-hosted)
Option B: Pinecone (serverless)
Option C: Weaviate (open-source)

We recommend pgvector for most teams—it's cheap, reliable, debuggable.

Step 3: Embed & Index

from anthropic import Anthropic

# Embed each document chunk
embeddings = model.embed(chunks)

# Store in vector DB
vector_db.insert(chunks, embeddings, metadata)

Step 4: Build Retrieval Function

def retrieve_context(question: str, top_k: int = 5):
    query_vector = embed_model.embed(question)
    results = vector_db.search(query_vector, top_k)
    return [r.text for r in results]

Step 5: Create Answer Function

def answer_question(question: str):
    context = retrieve_context(question)
    prompt = f"""Context: {context}

    Question: {question}
    Answer:"""

    response = claude.message(prompt, max_tokens=500)
    return response

Common Pitfalls (and How to Avoid Them)

Problem Cause Solution
Low quality answers Irrelevant documents retrieved Improve chunking strategy, increase similarity threshold
High costs Too many tokens sent to Claude Optimize chunk size, retrieve fewer docs, use caching
Stale answers Documents never updated Set up automated sync, monitor freshness
Hallucination Model invents info not in docs Use system prompt: "Only answer from provided context"

Techcologic's RAG Stack

For production systems, we use:

Documents → Chunking (LangChain)
         → Embedding (text-embedding-3-small)
         → Storage (pgvector on RDS)
         → Retrieval (vector similarity search)
         → Generation (Claude API)
         → Monitoring (Langsmith, custom logging)

Result: Production RAG systems that handle millions of queries, stay accurate, and cost <$0.02 per question.

Getting Started Today

If you're building with Claude and need to ground answers in your documents:

  1. Start small → Pick 5-10 important docs
  2. Chunk them → 500-token pieces
  3. Embed them → Use OpenAI embeddings or Claude's
  4. Store them → PostgreSQL + pgvector (free tier available)
  5. Test retrieval → Verify top-5 results make sense
  6. Add Claude → Build the augmented prompt
  7. Monitor → Track retrieval quality, token usage

This takes a weekend to prototype, a few days to production.

Ready to ship RAG? Book a Claude architecture call at Techcologic.


Key Takeaways:

  • RAG lets you augment Claude with your documents
  • Vector search finds relevant context in milliseconds
  • Costs drop 10-100x vs. naive approaches
  • Production RAG systems are reliable and maintainable