From e6a9ee64b3d1ab50e8941b35fb6ebc0d9bb33194 Mon Sep 17 00:00:00 2001 From: Alex Stachowiak Date: Thu, 30 Mar 2023 23:51:46 -0400 Subject: [PATCH] Update vectorstore-retriever.ipynb (#2210) --- .../indexes/retrievers/examples/vectorstore-retriever.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/indexes/retrievers/examples/vectorstore-retriever.ipynb b/docs/modules/indexes/retrievers/examples/vectorstore-retriever.ipynb index cc9c948f..906bb891 100644 --- a/docs/modules/indexes/retrievers/examples/vectorstore-retriever.ipynb +++ b/docs/modules/indexes/retrievers/examples/vectorstore-retriever.ipynb @@ -7,7 +7,7 @@ "source": [ "# VectorStore Retriever\n", "\n", - "The index - and therefor the retriever - that LangChain has the most support for is a VectorStoreRetriever. As the name suggests, this retriever is backed heavily by a VectorStore.\n", + "The index - and therefore the retriever - that LangChain has the most support for is a VectorStoreRetriever. As the name suggests, this retriever is backed heavily by a VectorStore.\n", "\n", "Once you construct a VectorStore, its very easy to construct a retriever. Let's walk through an example." ]