Commit
·
dc57ca1
1
Parent(s):
1abc85b
App Data
Browse files
app.py
CHANGED
@@ -25,10 +25,10 @@ from streamlit_option_menu import option_menu
|
|
25 |
debug = False
|
26 |
|
27 |
# File paths
|
28 |
-
embeddings_file = r"data
|
29 |
-
pmid_file = r"data
|
30 |
-
faiss_index_file = r"data
|
31 |
-
file_path = r'data
|
32 |
|
33 |
# Initialize OpenAI API client
|
34 |
client = OpenAI(
|
|
|
25 |
debug = False
|
26 |
|
27 |
# File paths
|
28 |
+
embeddings_file = r"./data/abstract_embeddings.npy"
|
29 |
+
pmid_file = r"./data/pmids.npy"
|
30 |
+
faiss_index_file = r"./data/faiss_index.index"
|
31 |
+
file_path = r'./data/parte_205.csv'
|
32 |
|
33 |
# Initialize OpenAI API client
|
34 |
client = OpenAI(
|