diff --git a/langchain/vectorstores/faiss.py b/langchain/vectorstores/faiss.py index 544d11b8384..7a0a70c6f8c 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) """