Update app.py
Browse filesCorrect faiss_index path
app.py
CHANGED
@@ -22,7 +22,7 @@ embeddings = HuggingFaceEmbeddings(model_name="intfloat/multilingual-e5-small")
|
|
22 |
|
23 |
vector_db = FAISS.load_local("faiss_index", embeddings, allow_dangerous_deserialization=True)
|
24 |
|
25 |
-
df = pd.read_csv("
|
26 |
|
27 |
def respond(
|
28 |
message,
|
|
|
22 |
|
23 |
vector_db = FAISS.load_local("faiss_index", embeddings, allow_dangerous_deserialization=True)
|
24 |
|
25 |
+
df = pd.read_csv("faiss_index/bger_cedh_db 1954-2024.csv")
|
26 |
|
27 |
def respond(
|
28 |
message,
|