Update app.py
Browse files
app.py
CHANGED
@@ -143,7 +143,7 @@ def upload_database(file: UploadFile = File(...)):
|
|
143 |
|
144 |
# Load the FAISS index from the file contents
|
145 |
global index
|
146 |
-
index = faiss.read_index(
|
147 |
|
148 |
return {"message": f"Database uploaded with {index.ntotal} embeddings"}
|
149 |
|
|
|
143 |
|
144 |
# Load the FAISS index from the file contents
|
145 |
global index
|
146 |
+
index = faiss.read_index(file.filename)
|
147 |
|
148 |
return {"message": f"Database uploaded with {index.ntotal} embeddings"}
|
149 |
|