RAG (Retrieval-Augmented Generation) kombiniert ein LLM mit einem Retrievalsystem — es ruft relevante Informationen aus einer Wissensdatenbank ab und stellt sie dem LLM als Kontext zur Verfügung, um genaue, fundierte Antworten zu generieren. Es ist eine Schlüsseltechnik zum Erstellen von LLM-Anwendungen über benutzerdefinierten Daten.
Was RAG tut
RAG → augment an LLM's generation with RETRIEVED relevant information:
1. RETRIEVE → search a knowledge base (your documents/data) for info relevant to the query
2. AUGMENT → add the retrieved info to the LLM's prompt as CONTEXT
3. GENERATE → the LLM answers using the provided context (grounded in your data)
→ gives the LLM relevant, up-to-date, specific knowledge it wasn't trained on
