From cd3ba0d51d5ac3d12b5e5e23c1a3e417a3491214 Mon Sep 17 00:00:00 2001 From: LangChain4j Date: Fri, 8 Nov 2024 15:31:21 +0100 Subject: [PATCH] docu: RAG --- docs/docs/tutorials/7-rag.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/tutorials/7-rag.md b/docs/docs/tutorials/7-rag.md index 82a7ce53eaa..8cd54c7d7ba 100644 --- a/docs/docs/tutorials/7-rag.md +++ b/docs/docs/tutorials/7-rag.md @@ -73,12 +73,12 @@ Here is a simplified diagram of the retrieval stage: [![](/img/rag-retrieval.png)](/tutorials/rag) -### RAG Flavours in LangChain4j +## RAG Flavours in LangChain4j LangChain4j offers three flavors of RAG: -- Easy RAG: the easiest way to start with RAG -- Naive RAG: a basic implementation of RAG using vector search -- Advanced RAG: a modular RAG framework that allows for additional steps such as +- [Easy RAG](/tutorials/rag/#easy-rag): the easiest way to start with RAG +- [Naive RAG](/tutorials/rag/#naive-rag): a basic implementation of RAG using vector search +- [Advanced RAG](/tutorials/rag/#advanced-rag): a modular RAG framework that allows for additional steps such as query transformation, retrieval from multiple sources, and re-ranking