Almaatla commited on
Commit
dbfd408
·
verified ·
1 Parent(s): 53897dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -9
app.py CHANGED
@@ -67,19 +67,16 @@ def reset_database():
67
  index.reset()
68
  return {"message": "Database reset"}
69
 
70
- @app.get("/admin/embeddings/download")
71
- def download_embeddings():
72
- # Reconstruct the embeddings from the FAISS index
73
- embeddings = index.reconstruct_n(0, index.ntotal)
74
-
75
- # Convert the embeddings list to a JSON string
76
- embeddings_json = json.dumps(embeddings.tolist())
77
 
78
  # Create a response with the JSON string as the content
79
- response = Response(content=embeddings_json, media_type="application/json")
80
 
81
  # Set the content disposition header to trigger a download
82
- response.headers["Content-Disposition"] = "attachment; filename=embeddings.json"
83
 
84
  return response
85
 
 
67
  index.reset()
68
  return {"message": "Database reset"}
69
 
70
+ @app.get("/admin/documents/download")
71
+ def download_documents():
72
+ # Convert the documents list to a JSON string
73
+ documents_json = json.dumps(documents)
 
 
 
74
 
75
  # Create a response with the JSON string as the content
76
+ response = Response(content=documents_json, media_type="application/json")
77
 
78
  # Set the content disposition header to trigger a download
79
+ response.headers["Content-Disposition"] = "attachment; filename=documents.json"
80
 
81
  return response
82