Missing a key word in the initial description of RAG article. (#891)

This commit is contained in:
kevleininger 2023-12-04 01:01:46 -05:00 committed by GitHub
parent 8d0e43914e
commit 9102d58e6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@
"source": [ "source": [
"**Retrieval Augmented Generation (RAG)**\n", "**Retrieval Augmented Generation (RAG)**\n",
"\n", "\n",
"LLMs are trained on vast datasets, but these will include your specific data. Retrieval-Augmented Generation (RAG) addresses this by dynamically incorporating your data during the generation process. This is done not by altering the training data of LLMs, but by allowing the model to access and utilize your data in real-time to provide more tailored and contextually relevant responses.\n", "LLMs are trained on vast datasets, but these will not include your specific data. Retrieval-Augmented Generation (RAG) addresses this by dynamically incorporating your data during the generation process. This is done not by altering the training data of LLMs, but by allowing the model to access and utilize your data in real-time to provide more tailored and contextually relevant responses.\n",
"\n", "\n",
"In RAG, your data is loaded and and prepared for queries or “indexed”. User queries act on the index, which filters your data down to the most relevant context. This context and your query then go to the LLM along with a prompt, and the LLM provides a response.\n", "In RAG, your data is loaded and and prepared for queries or “indexed”. User queries act on the index, which filters your data down to the most relevant context. This context and your query then go to the LLM along with a prompt, and the LLM provides a response.\n",
"\n", "\n",