Skip to content

Commit

Permalink
docs: Fix link in LLMChain tutorial (langchain-ai#23620)
Browse files Browse the repository at this point in the history
Co-authored-by: Bagatur <baskaryan@gmail.com>
  • Loading branch information
Doge-is-Dope and baskaryan committed Jun 28, 2024
1 parent bd68a38 commit 19eb82e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/how_to/few_shot_examples.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/how_to/few_shot_examples_chat.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/tutorials/rag.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 19eb82e

Please sign in to comment.