Carlosito16 commited on
Commit
d0c7993
1 Parent(s): 5435547

Update the FAISS with the knowledge from curriculum and survey from CP class

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,7 +52,7 @@ def load_embedding_model():
52
 
53
  @st.cache_data
54
  def load_faiss_index():
55
- vector_database = FAISS.load_local("faiss_index", embedding_model)
56
  return vector_database
57
 
58
  @st.cache_resource
 
52
 
53
  @st.cache_data
54
  def load_faiss_index():
55
+ vector_database = FAISS.load_local("faiss_index_web_and_curri", embedding_model) #CHANGE THIS FAISS EMBEDDED KNOWLEDGE
56
  return vector_database
57
 
58
  @st.cache_resource