Almaatla commited on
Commit
58918c3
·
verified ·
1 Parent(s): ecbda23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -145,8 +145,8 @@ def unpack_zip_file(filename:str,db:LangChainFAISS,progress):
145
 
146
  if 'index.faiss' in [item.lower() for item in contents]:
147
  db2 = LangChainFAISS.load_local(tmp_directory, embeddings, allow_dangerous_deserialization=True)
148
- db.merge_from(db2)
149
- return db
150
 
151
  for file in contents:
152
  if file.lower().endswith('.docx'):
 
145
 
146
  if 'index.faiss' in [item.lower() for item in contents]:
147
  db2 = LangChainFAISS.load_local(tmp_directory, embeddings, allow_dangerous_deserialization=True)
148
+ db2.merge_from(db)
149
+ return db2
150
 
151
  for file in contents:
152
  if file.lower().endswith('.docx'):