From 0ca96130c8274adcf85578979a436b484b662f59 Mon Sep 17 00:00:00 2001 From: asoderlind Date: Sun, 15 Oct 2023 10:23:09 +0200 Subject: [PATCH] remove trailing whitespace --- application/vectorstore/faiss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/vectorstore/faiss.py b/application/vectorstore/faiss.py index 08502c5..653484c 100644 --- a/application/vectorstore/faiss.py +++ b/application/vectorstore/faiss.py @@ -10,7 +10,7 @@ class FaissStore(BaseVectorStore): embeddings = self._get_embeddings(settings.EMBEDDINGS_NAME, embeddings_key) if docs_init: self.docsearch = FAISS.from_documents( - docs_init, embeddings + docs_init, embeddings ) else: self.docsearch = FAISS.load_local(