Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,23 @@ def upload_document(file_path, embed_model):
|
|
97 |
except Exception as e:
|
98 |
print(f"Error during document upload: {e}")
|
99 |
|
100 |
-
@app.route("/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
@app.route("/upload", methods=["POST"])
|
102 |
def handle_upload():
|
103 |
# Check if the request contains the file
|
|
|
97 |
except Exception as e:
|
98 |
print(f"Error during document upload: {e}")
|
99 |
|
100 |
+
@app.route("/list_uploads", methods=["GET"])
|
101 |
+
def list_uploaded_files():
|
102 |
+
try:
|
103 |
+
# Ensure the upload directory exists
|
104 |
+
if not os.path.exists(UPLOAD_DIR):
|
105 |
+
return jsonify({"error": "Upload directory does not exist"}), 400
|
106 |
+
|
107 |
+
# List all files in the upload directory
|
108 |
+
files = os.listdir(UPLOAD_DIR)
|
109 |
+
|
110 |
+
if not files:
|
111 |
+
return jsonify({"message": "No files found in the upload directory"}), 200
|
112 |
+
|
113 |
+
return jsonify({"files": files}), 200
|
114 |
+
except Exception as e:
|
115 |
+
return jsonify({"error": f"Error listing files: {e}"}), 500
|
116 |
+
|
117 |
@app.route("/upload", methods=["POST"])
|
118 |
def handle_upload():
|
119 |
# Check if the request contains the file
|