In the context of LLM applications, what does RAG (Retrieval-Augmented Generation) fundamentally mean?
- aThe system retrieves relevant external content and inserts it into the prompt so the model can answer using it.✓
- bThe model is retrained on new documents so the knowledge becomes permanently encoded in its weights.
- cThe model generates several candidate answers using different sampling runs and averages them for a more stable response.
- dThe system stores previous answers and replays a cached response whenever a similar question is asked.
Explanation:RAG combines retrieval with generation: relevant documents are fetched and placed in context before the model answers. (b) describes fine-tuning, not RAG. (c) describes an ensembling/self-consistency technique, unrelated to retrieval. (d) describes response caching, which does not involve retrieving source content.