From ee5167bb6d2631033d46129b38cabad989629688 Mon Sep 17 00:00:00 2001 From: sifatj <26035630+sifatj@users.noreply.github.com> Date: Mon, 4 Nov 2024 20:28:11 +0000 Subject: [PATCH] docs: Update VectorStore .as_retriever method url in vectorstore_retriever.ipynb (#27842) **Description**: Update VectorStore `.as_retriever` method url in `vectorstore_retriever.ipynb` Co-authored-by: Erick Friis --- docs/docs/how_to/vectorstore_retriever.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/how_to/vectorstore_retriever.ipynb b/docs/docs/how_to/vectorstore_retriever.ipynb index 760bcb2f90e4a..cc9958eb32a38 100644 --- a/docs/docs/how_to/vectorstore_retriever.ipynb +++ b/docs/docs/how_to/vectorstore_retriever.ipynb @@ -28,7 +28,7 @@ "\n", "## Creating a retriever from a vectorstore\n", "\n", - "You can build a retriever from a vectorstore using its [.as_retriever](https://python.langchain.com/api_reference/core/vectorstores/langchain_core.vectorstores.VectorStore.html#langchain_core.vectorstores.VectorStore.as_retriever) method. Let's walk through an example.\n", + "You can build a retriever from a vectorstore using its [.as_retriever](https://python.langchain.com/api_reference/core/vectorstores/langchain_core.vectorstores.base.VectorStore.html#langchain_core.vectorstores.base.VectorStore.as_retriever) method. Let's walk through an example.\n", "\n", "First we instantiate a vectorstore. We will use an in-memory [FAISS](https://python.langchain.com/api_reference/community/vectorstores/langchain_community.vectorstores.faiss.FAISS.html) vectorstore:" ]