Update app.py
Browse files
app.py
CHANGED
@@ -67,19 +67,16 @@ def reset_database():
|
|
67 |
index.reset()
|
68 |
return {"message": "Database reset"}
|
69 |
|
70 |
-
@app.get("/admin/
|
71 |
-
def
|
72 |
-
#
|
73 |
-
|
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=
|
80 |
|
81 |
# Set the content disposition header to trigger a download
|
82 |
-
response.headers["Content-Disposition"] = "attachment; filename=
|
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 |
|