RAG (Retrieval-Augmented Generation) combina un LLM con un sistema di recupero — recuperando informazioni rilevanti da una knowledge base e fornendole all'LLM come contesto per generare risposte accurate e fondate. È una tecnica chiave per costruire applicazioni LLM su dati personalizzati.
Cosa fa RAG
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
