Fix docstring of FAISS constructor (#1611)

This commit is contained in:
Abhinav Upadhyay
2023-03-12 22:01:40 +05:30
committed by GitHub
parent 7e550df6d4
commit 9707eda83c

View File

@@ -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)
"""