From 9707eda83c04f0f421aa05eb5d74c79532bf3e42 Mon Sep 17 00:00:00 2001 From: Abhinav Upadhyay Date: Sun, 12 Mar 2023 22:01:40 +0530 Subject: [PATCH] Fix docstring of FAISS constructor (#1611) --- langchain/vectorstores/faiss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/vectorstores/faiss.py b/langchain/vectorstores/faiss.py index 544d11b8..7a0a70c6 100644 --- a/langchain/vectorstores/faiss.py +++ b/langchain/vectorstores/faiss.py @@ -38,7 +38,7 @@ class FAISS(VectorStore): .. code-block:: python from langchain import FAISS - faiss = FAISS(embedding_function, index, docstore) + faiss = FAISS(embedding_function, index, docstore, index_to_docstore_id) """