From 19eb82e68bbba12f8c7cde01aba1ee92dfae2ec2 Mon Sep 17 00:00:00 2001 From: "clement.l" Date: Fri, 28 Jun 2024 11:59:24 +0800 Subject: [PATCH] docs: Fix link in LLMChain tutorial (#23620) Co-authored-by: Bagatur --- docs/docs/how_to/few_shot_examples.ipynb | 2 +- docs/docs/how_to/few_shot_examples_chat.ipynb | 2 +- docs/docs/tutorials/rag.ipynb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/how_to/few_shot_examples.ipynb b/docs/docs/how_to/few_shot_examples.ipynb index 625e0afe5ea..ac35a87731b 100644 --- a/docs/docs/how_to/few_shot_examples.ipynb +++ b/docs/docs/how_to/few_shot_examples.ipynb @@ -23,7 +23,7 @@ "- [Prompt templates](/docs/concepts/#prompt-templates)\n", "- [Example selectors](/docs/concepts/#example-selectors)\n", "- [LLMs](/docs/concepts/#llms)\n", - "- [Vectorstores](/docs/concepts/#vectorstores)\n", + "- [Vectorstores](/docs/concepts/#vector-stores)\n", "\n", ":::\n", "\n", diff --git a/docs/docs/how_to/few_shot_examples_chat.ipynb b/docs/docs/how_to/few_shot_examples_chat.ipynb index 0f9f1e321f5..4e49aec932d 100644 --- a/docs/docs/how_to/few_shot_examples_chat.ipynb +++ b/docs/docs/how_to/few_shot_examples_chat.ipynb @@ -23,7 +23,7 @@ "- [Prompt templates](/docs/concepts/#prompt-templates)\n", "- [Example selectors](/docs/concepts/#example-selectors)\n", "- [Chat models](/docs/concepts/#chat-model)\n", - "- [Vectorstores](/docs/concepts/#vectorstores)\n", + "- [Vectorstores](/docs/concepts/#vector-stores)\n", "\n", ":::\n", "\n", diff --git a/docs/docs/tutorials/rag.ipynb b/docs/docs/tutorials/rag.ipynb index e6bef08c260..cc8313ecce8 100644 --- a/docs/docs/tutorials/rag.ipynb +++ b/docs/docs/tutorials/rag.ipynb @@ -41,7 +41,7 @@ "### Indexing\n", "1. **Load**: First we need to load our data. This is done with [Document Loaders](/docs/concepts/#document-loaders).\n", "2. **Split**: [Text splitters](/docs/concepts/#text-splitters) break large `Documents` into smaller chunks. This is useful both for indexing data and for passing it in to a model, since large chunks are harder to search over and won't fit in a model's finite context window.\n", - "3. **Store**: We need somewhere to store and index our splits, so that they can later be searched over. This is often done using a [VectorStore](/docs/concepts/#vectorstores) and [Embeddings](/docs/concepts/#embedding-models) model.\n", + "3. **Store**: We need somewhere to store and index our splits, so that they can later be searched over. This is often done using a [VectorStore](/docs/concepts/#vector-stores) and [Embeddings](/docs/concepts/#embedding-models) model.\n", "\n", "![index_diagram](../../static/img/rag_indexing.png)\n", "\n",