179 questions
No questions match those filters.
What is CRAG (Corrective RAG) and how does it improve on standard Agentic RAG?
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansStandard Agentic RAG retrieves and generates in sequence, with no check on whether the retrieved chunks were actually any good — if the vector search returns the wrong document version or an off-topic passage, the model happily generates from it anyway. CRAG closes that gap by grading every chunk before it reaches the generator: relevant chunks pass through, irrelevant ones get discarded and backfilled with a web search, and chunks that are only partially relevant get filtered down and supplemented rather than trusted wholesale.
The scenario this catches most often in practice is a stale or wrong-version document sitting in the index next to the current one. Without a quality gate, similarity search alone can’t tell the difference between a superseded doc and the current one if both mention the same topic — CRAG’s evaluator is what actually notices the mismatch and pulls in a fresher source instead of confidently answering from the wrong version.