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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
The Cloudflare Blog
量子位
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
U
Unit 42
博客园 - 聂微东
有赞技术团队
有赞技术团队
A
About on SuperTechFans

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
My RAG Pipeline Was 84% Confident — And Completely Wrong.
Garvit Singh · 2026-04-25 · via DEV Community

I built a production-grade RAG system called PrecisionRAG. It combines Self-RAG and CRAG (Corrective RAG) techniques, runs on LangGraph, has hallucination checking, answer revision loops, usefulness checks, corrective re-retrieval before web search fallback - and more.

Then I asked it a simple factual question and it gave me a confidently wrong answer.

84% confidence. Fully Supported. 100% useful. Completely incorrect.

This is the story of how that happened, how I debugged it, and the architectural fix that solved it.


What I Built

PrecisionRAG is not a basic "chunk PDFs, embed, retrieve, generate" pipeline. It layers multiple self-checking mechanisms:

  1. Decides whether retrieval is even necessary
  2. Rewrites the user's question into a retrieval-optimized query
  3. Retrieves and evaluates documents for relevance (single batched LLM call)
  4. If docs are ambiguous — rewrites the query and re-retrieves before falling back to web search (the core CRAG idea)
  5. Falls back to Tavily web search only when local docs are genuinely insufficient
  6. Refines context by filtering irrelevant strips (single batched LLM call)
  7. Generates an answer grounded in refined context
  8. Checks for hallucinations and revises until fully supported
  9. Checks whether the answer is actually useful, rewrites and reruns if not

The whole pipeline runs as a LangGraph StateGraph, with PostgreSQL checkpointing so failed runs can be resumed without wasting tokens.

Every answer comes back with a full evaluation payload:

{
  "answer": "...",
  "evaluation": {
    "confidence": 0.84,
    "retrieval_relevance": 0.18,
    "support": { "label": "fully_supported", "score": 1.0 },
    "usefulness": { "label": "useful", "score": 1.0 }
  },
  "pipeline": {
    "retrieval_used": true,
    "web_search_used": true,
    "hallucination_retries": 1,
    "usefulness_retries": 0
  }
}

Enter fullscreen mode Exit fullscreen mode

Looks solid, until it isn't.


I uploaded a PDF — a structured guide on engineering reflection practices. It has a section called the Critical Thinking Scorecard which lists six dimensions, each rated 1–5, with a total max score of 30.

I asked:

"What are the exact 6 dimensions in the Critical Thinking Scorecard and their max scores?"

This is a perfect RAG test question. It's specific, factual, and the answer is clearly in the document. There's no ambiguity.

Here's what my pipeline returned:

Answer: The exact six dimensions in the Critical Thinking Scorecard are:
Accuracy, Clarity, Precision, Depth, Relevance, and Logic.
Each dimension has a maximum score of 4 (highest).

Confidence: 84%
Support: Fully Supported (1.0)
Usefulness: Useful (1.0)
Retrieval Relevance: 18%
Hallucination retries: 1
Web search used: ✓

Enter fullscreen mode Exit fullscreen mode

Wrong. Completely wrong.

The real dimensions are: Depth of Reflection, Learning Extraction, Perspective-Taking, Signal vs Noise Clarity, Goal Alignment, and Reflexivity. Max score per dimension is 5, total is 30.

But my pipeline was 84% confident.


Debugging: What Actually Happened

The first signal was the retrieval relevance score: 18%. That's very low. It means the chunks that came back from FAISS weren't actually relevant.

I logged the raw chunk scores:

Doc scores: [0.3, 0.1, 0.2, 0.1]  ambiguous

Enter fullscreen mode Exit fullscreen mode

All below 0.3. My pipeline correctly identified this as "ambiguous" and triggered corrective re-retrieval — rewrote the query and tried again. Same chunks came back. Same scores.

Then it fell back to web search.

Tavily found something. A generic critical thinking framework from the internet that genuinely does use "Accuracy, Clarity, Precision, Depth, Relevance, Logic." My grounding checker then correctly verified: yes, the answer is fully supported by the retrieved context. It is. Just by the wrong context — a web result, not my PDF.

This is the most dangerous failure mode in RAG. Everything is working exactly as designed. The hallucination checker isn't broken. The usefulness checker isn't broken. The grounding is real. The source is just wrong, and no part of my pipeline was checking for that.

But that's a separate problem. The root issue was earlier: why weren't the right chunks being retrieved in the first place?


The Real Problem: Chunking

I logged the actual chunks that FAISS was returning:

[0] Critical Thinking Scorecard — Measuring the Quality of Your Reflection...
    How to Use This Scorecard. For each dimension, rate your reflection from 1 to 5...
    Score: 0.6 ("Provides background but does not list the exact dimensions")

[1] Critical Thinking Scorecard — When to use: After completing reflection exercises...
    Score: 0.3

[2] Interpreting Your Score — 25–30 → Deep, deliberate reflection...
    Score: 0.4

[3] PART III — Improve Thinking Quality...
    Score: 0.2

Enter fullscreen mode Exit fullscreen mode

The chunk that actually contained the dimensions — the page that lists "Depth of Reflection: 1-5, Learning Extraction: 1-5..." — was never retrieved.

I bumped top_k from 4 to 8 and tried again:

[6] Signal vs Noise Clarity... Goal Alignment... Reflexivity...
    Score: 1.0 ("Lists exact dimensions and max scores")

Enter fullscreen mode Exit fullscreen mode

Progress. Chunk [6] scored 1.0. But it only contained the last 3 dimensions. The first 3 were on the previous page — a completely different chunk that still didn't appear in the top 8.

The answer was split across a page boundary. Standard flat retrieval, no matter how high you set top_k, you fundamentally can't solve this — you're just hoping both halves happen to rank in the top k. Sometimes they will. Often they won't.


Understanding Why This Happens

When you embed a chunk of text, you get a single vector that represents the average meaning of everything in that chunk.

A large chunk covering multiple topics has a blended embedding — its similarity to your query gets diluted by all the unrelated content around the relevant section. A smaller, focused chunk about exactly the right topic will have an embedding that's much closer to your query vector.

This is why small chunks retrieve better. But small chunks don't always have enough context to answer the question.

That's the fundamental tension in RAG: small chunks = better retrieval, large chunks = better generation.


The Fix: Parent-Document Retrieval

Parent-Document Retrieval Method

The solution is to decouple retrieval and generation — use small chunks for finding relevant content, but pass larger chunks to the generator.

The pattern works like this:

  1. Split your documents into large parent chunks (used for answer generation)
  2. Split each parent chunk further into small child chunks (used for retrieval)
  3. Embed only the child chunks and store them in FAISS
  4. At query time, retrieve the top-k most similar child chunks
  5. For each child chunk hit, look up its parent and swap it in
  6. Pass the parent chunks to the rest of your pipeline

Here's a concrete example. Say you have a 5-page PDF:

  • PDF loader gives you 5 page-level Document objects
  • Parent splitter (chunk_size=2100) gives you 15 parent chunks
  • Child splitter (chunk_size=700) gives you ~5 child chunks per parent = 75 child chunks in FAISS
  • At query time: FAISS similarity search across all 75 child embeddings → returns top 4 child chunks
  • Each child has a parent_id metadata field → look up its parent → pass 4 parent chunks to the generator

You get the precision of small-chunk retrieval AND the context richness of large-chunk generation.

In my case: the child chunk containing "Signal vs Noise Clarity, Goal Alignment, Reflexivity" scores 1.0 and gets retrieved. Its parent chunk contains the full scorecard section — including the first 3 dimensions. Problem solved.


What I Learned

1. High confidence + low retrieval relevance means wrong source, not wrong answer.
My pipeline produced a grounded, useful, fully-supported answer. It was just grounded in the wrong document. Source-awareness needs to be a first-class concern in RAG evaluation.

2. Debugging RAG requires instrumenting every node.
I couldn't have found this without logging chunk scores, evaluation results, and which path the pipeline took. If you're building RAG and not logging intermediate state, you're flying blind.


Final Thought

The hardest bugs in RAG aren't the obvious ones where the pipeline crashes or returns "I don't know." They're the ones where everything looks correct — green metrics, high confidence, fully supported — and the answer is still wrong.

The only way to catch them is to test with questions where you already know the answer, instrument every intermediate step, and treat low retrieval relevance as a hard failure signal even when everything downstream looks fine.

Build paranoid. Verify everything.

PrecisionRAG is a personal project I built to go deep on RAG reliability. Second-year CS student, building in public. If you found this useful or have questions about the implementation, drop a comment.