Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
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, "
|
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 |
|