Skip to content

Commit

Permalink
RAG
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhupesh-V committed Dec 29, 2023
1 parent cc27c83 commit 452ab55
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Artificial Intelligence/retrieval-augmented-generative-rag.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Retrieval-Augmented Generation (RAG)

Currently LLMs have these 2 problems:
1. They lack valid source while generating text.
2. They are often out-of date.

The RAG framework is a new approach to solve these problems. In this appraoch a LLM first finds relevant passages from a large corpus (content store like the Internet) and then generates text based on user prompt. This way it solves both the problems mentioned above.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
## Categories
* [AWS](#aws) [**`1`**]
* [Android](#android) [**`1`**]
* [Artificial Intelligence](#artificial-intelligence) [**`1`**]
* [Artificial Intelligence](#artificial-intelligence) [**`2`**]
* [Career](#career) [**`7`**]
* [Coding Practices](#coding-practices) [**`5`**]
* [Community Building](#community-building) [**`3`**]
Expand Down Expand Up @@ -75,6 +75,7 @@

<ul>
<li><a target="_blank" href="https://github.com/Bhupesh-V/til/blob/master/Artificial Intelligence/fundamentals-of-llms.md">Fundamentals of LLMs</a>
<li><a target="_blank" href="https://github.com/Bhupesh-V/til/blob/master/Artificial Intelligence/retrieval-augmented-generative-rag.md">Retrieval-Augmented Generation (RAG)</a>
</ul>


Expand Down
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

<ul>
<li><a href="Artificial Intelligence/fundamentals-of-llms.md">Fundamentals of LLMs</a>
<li><a href="Artificial Intelligence/retrieval-augmented-generative-rag.md">Retrieval-Augmented Generation (RAG)</a>
</ul>

## Career
Expand Down
2 changes: 1 addition & 1 deletion count.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"count": 142
"count": 143
}

0 comments on commit 452ab55

Please sign in to comment.