What is RAG system ?? #1271
Answered
by
RaniduNethma
kelumwanninayaka
asked this question in
Q&A
-
|
What is RAG system ?? |
Beta Was this translation helpful? Give feedback.
Answered by
RaniduNethma
Jan 28, 2026
Replies: 1 comment 1 reply
-
RAG stands for Retrieval-Augmented Generation.In simple terms, RAG is a way to make AI answers smarter and more accurate by letting the model look up information before generating a response. Why RAG existsLarge Language Models (LLMs) like ChatGPT:
RAG solves this by combining search + generation. How RAG works (step by step)
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kelumwanninayaka
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RAG stands for Retrieval-Augmented Generation.
In simple terms, RAG is a way to make AI answers smarter and more accurate by letting the model look up information before generating a response.
Why RAG exists
Large Language Models (LLMs) like ChatGPT:
Don’t know private data
May have outdated knowledge
Can hallucinate (make things up)
RAG solves this by combining search + generation.
How RAG works (step by step)
Database
PDFs
Docs
Knowledge base
Vector database (embeddings)