Almaatla commited on
Commit
ea83f7b
·
verified ·
1 Parent(s): cd65a86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -75,7 +75,7 @@ def reset_database():
75
  @app.get("/admin/documents/download")
76
  def download_documents():
77
  # Convert the documents list to a JSON string
78
- documents_json = json.dumps({"text": documents})
79
 
80
  # Create a response with the JSON string as the content
81
  response = Response(content=documents_json, media_type="application/json")
@@ -90,7 +90,7 @@ def download_documents():
90
  def upload_documents(request: EmbedRequest):
91
  documents.extend(request.texts)
92
  return {
93
- "message": f"{len(new_documents)} new documents uploaded"
94
  }
95
 
96
  @app.get("/admin/database/download")
 
75
  @app.get("/admin/documents/download")
76
  def download_documents():
77
  # Convert the documents list to a JSON string
78
+ documents_json = json.dumps({"texts": documents})
79
 
80
  # Create a response with the JSON string as the content
81
  response = Response(content=documents_json, media_type="application/json")
 
90
  def upload_documents(request: EmbedRequest):
91
  documents.extend(request.texts)
92
  return {
93
+ "message": f"{len(documents)} new documents uploaded"
94
  }
95
 
96
  @app.get("/admin/database/download")