daneshjoy commited on
Commit
4620fde
·
1 Parent(s): 3df4c12

fixed a typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.exits(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
 
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