AjithBharadwaj commited on
Commit
0af23db
·
verified ·
1 Parent(s): 936216e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -84,7 +84,7 @@ def user_input(user_question):
84
  encode_kwargs=encode_kwargs
85
  )
86
 
87
- new_db = FAISS.load_local("faiss_index", hf)
88
  docs = new_db.similarity_search(user_question)
89
 
90
  chain = get_conversational_chain()
 
84
  encode_kwargs=encode_kwargs
85
  )
86
 
87
+ new_db = FAISS.load_local("faiss_index", hf,allow_dangerous_deserialization=True)
88
  docs = new_db.similarity_search(user_question)
89
 
90
  chain = get_conversational_chain()