ORBiS TREE · ENGLISH DOCUMENT
Concepts →Retrieval-Augmented Generation (RAG)
A method that retrieves external information and supplies it to a generative model as context.
한국어
English
This English page is a curated translation layer linked to the Korean source article. Community changes are currently made on the Korean source, where the full revision history and anonymous edit trail are preserved.
Retrieval-Augmented Generation, commonly called RAG, combines a generative model with an external retrieval system. Instead of relying only on information encoded in model parameters, a RAG pipeline searches a knowledge source and provides relevant material to the model before generation.[1]
How it works
A typical pipeline converts documents and queries into representations, performs Vector Search or another retrieval method, selects relevant passages, and inserts them into the prompt. Embedding models are frequently used for semantic retrieval, although keyword and hybrid retrieval can also be effective.
Why it matters
RAG can improve freshness, traceability, and domain grounding, but it is not an automatic truth mechanism. Retrieval quality, document quality, prompt construction, and citation handling all affect the final answer.
Related concepts
SOURCES
Sources
-
Retrieval-Augmented Generation for Knowledge-Intensive NLP TasksFacebook AI Research / arXivOpen source ↗
KNOWLEDGE LINKS
Continue from here
BACKLINKS