Almaatla commited on
Commit
4a1a39e
·
verified ·
1 Parent(s): a7c620c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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("database.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