/
githubmirror
/
Prompt-Engineering-Guide
Обзор
Документация
Войти
/
githubmirror
/
Prompt-Engineering-Guide
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
pages/techniques/rag.en.mdx
74 строки
5 KB
Elvis Saravia
Migrate course links from Thinkific to new academy platform
02 фев 2026, 00:09
02 фев 2026, 00:09
3d96678
Код
Авторство
О чём код?
# Retrieval Augmented Generation (RAG) import {Cards, Card} from 'nextra-theme-docs' import {TerminalIcon} from 'components/icons' import {CodeIcon} from 'components/icons' import {Screenshot} from 'components/screenshot' import RAG from '../../img/rag.png' import { CoursePromo, CoursesSection, CourseCard } from '../../components/CourseCard' General-purpose language models can be fine-tuned to achieve several common tasks such as sentiment analysis and named entity recognition. These tasks generally don't require additional background knowledge. For more complex and knowledge-intensive tasks, it's possible to build a language model-based system that accesses external knowledge sources to complete tasks. This enables more factual consistency, improves reliability of the generated responses, and helps to mitigate the problem of "hallucination". Meta AI researchers introduced a method called [Retrieval Augmented Generation (RAG)](https://ai.facebook.com/blog/retrieval-augmented-generation-streamlining-the-creation-of-intelligent-natural-language-processing-models/) to address such knowledge-intensive tasks. RAG combines an information retrieval component with a text generator model. RAG can be fine-tuned and its internal knowledge can be modified in an efficient manner and without needing retraining of the entire model. RAG takes an input and retrieves a set of relevant/supporting documents given a source (e.g., Wikipedia). The documents are concatenated as context with the original input prompt and fed to the text generator which produces the final output. This makes RAG adaptive for situations where facts could evolve over time. This is very useful as LLMs's parametric knowledge is static. RAG allows language models to bypass retraining, enabling access to the latest information for generating reliable outputs via retrieval-based generation. Lewis et al., (2021) proposed a general-purpose fine-tuning recipe for RAG. A pre-trained seq2seq model is used as the parametric memory and a dense vector index of Wikipedia is used as non-parametric memory (accessed using a neural pre-trained retriever). Below is a overview of how the approach works: <Screenshot src={RAG} alt="RAG" /> Image Source: [Lewis et el. (2021)](https://arxiv.org/pdf/2005.11401.pdf) RAG performs strong on several benchmarks such as [Natural Questions](https://ai.google.com/research/NaturalQuestions), [WebQuestions](https://paperswithcode.com/dataset/webquestions), and CuratedTrec. RAG generates responses that are more factual, specific, and diverse when tested on MS-MARCO and Jeopardy questions. RAG also improves results on FEVER fact verification. This shows the potential of RAG as a viable option for enhancing outputs of language models in knowledge-intensive tasks. More recently, these retriever-based approaches have become more popular and are combined with popular LLMs like ChatGPT to improve capabilities and factual consistency. ## RAG Use Case: Generating Friendly ML Paper Titles Below, we have prepared a notebook tutorial showcasing the use of open-source LLMs to build a RAG system for generating short and concise machine learning paper titles: <Cards> <Card icon={<CodeIcon />} title="Getting Started with RAG" href="https://github.com/dair-ai/Prompt-Engineering-Guide/blob/main/notebooks/pe-rag.ipynb" /> </Cards> ## References - [Retrieval-Augmented Generation for Large Language Models: A Survey](https://arxiv.org/abs/2312.10997) (Dec 2023) - [Retrieval Augmented Generation: Streamlining the creation of intelligent natural language processing models](https://ai.meta.com/blog/retrieval-augmented-generation-streamlining-the-creation-of-intelligent-natural-language-processing-models/) (Sep 2020) <CoursesSection title="Related Learning"> <CourseCard tag="Course" tagColor="blue" title="Prompt Engineering for LLMs" description="Master RAG, knowledge retrieval, and advanced prompting techniques for knowledge-intensive tasks." href="https://academy.dair.ai/courses/introduction-prompt-engineering" level="Beginner" duration="2 hours" /> <CourseCard tag="Course" tagColor="purple" title="Building Effective AI Agents" description="Learn to build effective AI agents. Covers function calling, tool integration, and debugging agentic systems." href="https://academy.dair.ai/courses/building-effective-ai-agents" level="Intermediate" duration="5 hours" /> </CoursesSection> <CoursePromo title="Explore All Courses" description="Discover our full catalog of AI and prompt engineering courses. From beginners to advanced practitioners." href="https://academy.dair.ai/" buttonText="Browse Academy" promoCode="PROMPTING20" />