Glossary
RAG (Retrieval-Augmented Generation)
Also known as: Retrieval-Augmented Generation, Retrieval Augmented Generation
Definition
In a RAG pipeline, the user question is first converted into an embedding and searched against a vector index of document chunks. The closest passages are optionally re-ranked by a reranking model and then passed as context to the language model. The model generates an answer grounded in the retrieved material, ideally with citations and source references. RAG keeps LLMs current, domain-specific, and auditable without retraining the base model.
How Swiss Knowledge Hub uses this term
Swiss Knowledge Hub is built as a RAG platform: every answer includes the source chunks that were used, complete with page number and a direct jump into the originating document. This reduces hallucinations and makes compliance audits easier.
Related terms
Sources
- Wikipedia: Retrieval-augmented generation — https://en.wikipedia.org/wiki/Retrieval-augmented_generation
- Lewis et al. (2020) — Retrieval-Augmented Generation for Knowledge-Intensive NLP — https://arxiv.org/abs/2005.11401
This term is implemented concretely in Swiss Knowledge Hub.
See the Swiss Knowledge Hub RAG platform →Last updated: April 22, 2026