aarushiksk / Noob-to-Ninja-ML

Welcome! This is a repository for adding your python projects, data analysis/data science projects or jupyter/kaggle notebooks.
6 stars 16 forks source link

Create a basic RAG system #27

Closed Tanish2207 closed 1 week ago

Tanish2207 commented 1 week ago

Description

Create a basic text-based RAG (Retrieval-Augmented Generation) system .

RAG

Retrieval-Augmented Generation (RAG) is a hybrid approach that combines retrieval and generation techniques in natural language processing. It retrieves relevant documents or information from a knowledge base or corpus and then feeds this information into a language model to generate a response. RAG improves the accuracy and relevance of responses by grounding them in retrieved context rather than relying solely on the model's learned knowledge. It's especially useful for tasks requiring specific, up-to-date information, such as question answering or summarization.

User Workflow:

aarushiksk commented 1 week ago

Hey, the RAG chatbot has been merged!!