Anne31415 commited on
Commit
c88d52e
·
verified ·
1 Parent(s): 528e8e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -55,7 +55,7 @@ api_key = os.getenv("OPENAI_API_KEY")
55
 
56
  # Updated load_vector_store function with Streamlit text outputs and directory handling for Git
57
  @st.cache_data(persist="disk")
58
- def load_vector_store(file_path, store_name, force_reload=True):
59
  local_repo_path = "Private_Book"
60
  vector_store_path = os.path.join(local_repo_path, f"{store_name}.pkl")
61
 
@@ -311,7 +311,7 @@ def page2():
311
  st.error("File not found. Please check the file path.")
312
  return
313
 
314
- VectorStore = load_vector_store(pdf_path2, "vector_store_page2", force_reload=False)
315
 
316
 
317
 
 
55
 
56
  # Updated load_vector_store function with Streamlit text outputs and directory handling for Git
57
  @st.cache_data(persist="disk")
58
+ def load_vector_store(file_path, store_name, force_reload=False):
59
  local_repo_path = "Private_Book"
60
  vector_store_path = os.path.join(local_repo_path, f"{store_name}.pkl")
61
 
 
311
  st.error("File not found. Please check the file path.")
312
  return
313
 
314
+ VectorStore = load_vector_store(pdf_path2, "KH_reform_vector_store", force_reload=True)
315
 
316
 
317