Spaces:
Runtime error
Runtime error
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Vector DB Creator</title> | |
</head> | |
<body> | |
<h1>Upload Your .ZIP File</h1> | |
<p> | |
On upload, the existing <strong>uploads</strong> folder is cleared. | |
Then, your new files are extracted, vector DB is created, | |
and finally, we zip the entire <strong>uploads</strong> folder | |
with a timestamped name. | |
</p> | |
<form action="/" method="POST" enctype="multipart/form-data"> | |
<label for="file">Choose ZIP File:</label> | |
<input type="file" name="file" id="file" accept=".zip" required> | |
<button type="submit">Upload & Process</button> | |
</form> | |
</body> | |
</html> | |