Affected files: .obsidian/workspace.json .obsidian_iphone/plugins/obsidian-spaced-repetition/data.json .obsidian_iphone/workspace-mobile.json Temporary/RAG.md
668 B
668 B
title, created_date, updated_date, aliases, tags
| title | created_date | updated_date | aliases | tags |
|---|---|---|---|---|
| RAG | 2025-07-23 | 2025-07-23 |
RAG
LangChain Tutorial
Build a Retrieval Augmented Generation (RAG) App: Part 1 | 🦜️🔗 LangChain
Indexing
The indexing is a pipeline for ingesting data and index it. This usually happens offline.
- We need to load the data. This can come from a variety of different sources
- We need to split the data into chunks because its easier for indexing and for passing it into a model.
- We need to store and index the splits such that we can search over them later. Examples are VectorStore and Embeddings model.