fixed a typo
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ sql_file = 'faiss_doc_store.db'
|
|
10 |
faiss_file = 'faiss_index.faiss'
|
11 |
|
12 |
# %% ------------------------------------------- Creating Doc store
|
13 |
-
if not os.path.exists(sql_file) or not os.path.
|
14 |
from haystack.document_stores import FAISSDocumentStore
|
15 |
from haystack.nodes import DensePassageRetriever
|
16 |
from haystack.utils import convert_files_to_docs, clean_wiki_text
|
|
|
10 |
faiss_file = 'faiss_index.faiss'
|
11 |
|
12 |
# %% ------------------------------------------- Creating Doc store
|
13 |
+
if not os.path.exists(sql_file) or not os.path.exists(faiss_file):
|
14 |
from haystack.document_stores import FAISSDocumentStore
|
15 |
from haystack.nodes import DensePassageRetriever
|
16 |
from haystack.utils import convert_files_to_docs, clean_wiki_text
|