This text reveals you the right way to create a RAG system that permits you to simply entry knowledge by means of prompts.
The RAG system is an modern strategy to data retrieval. It makes use of a mixture of conventional data retrieval approaches, equivalent to vector similarity search, and state-of-the-art large-scale language modeling methods. Collectively, these applied sciences create a strong system that permits you to entry huge quantities of knowledge from easy prompts.
I used to be impressed to put in writing this text as a result of I used to be pissed off looking for outdated emails. I often have some details about the e-mail, equivalent to who the individual was speaking with and what the subject of the e-mail was. Nonetheless, for those who do a phrase search immediately in Gmail, it’s a must to be extra particular, which makes it tougher to seek out the precise electronic mail you are in search of. I want to have a RAG system that permits me to immediate searches in my emails. So, if you would like outdated emails from the college on a sure matter, you may ask questions like “What technical course did he enroll in in his second yr at NTNU?” A direct phrase search equal to this immediate is troublesome as a result of the immediate requires extra particular data. As a substitute, the RAG system can discover your electronic mail if it accommodates all of the required knowledge.
· motivation
· get data
· Data preprocessing
· Other options
· RAG implementation
○ Prepare the data
○ Load the LLM
○ Use the LLM
· test
○ test 1
○ test 2
· How it will be done in the future
· conclusion
Step one in making a RAG system is to seek out the information you wish to use along with your RAG system. In my case, I wish to seek for emails…

