File size: 696 Bytes
975d1b2
 
 
4ad299d
975d1b2
 
 
e4dba65
 
 
 
 
 
 
 
 
 
 
 
975d1b2
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<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>