Spaces:
Sleeping
Sleeping
fix markdown
Browse files
app.py
CHANGED
|
@@ -223,7 +223,20 @@ def create_and_run_app():
|
|
| 223 |
# --- TAB 2: UPLOAD ---
|
| 224 |
with gr.TabItem("Upload Data", id=1):
|
| 225 |
gr.Markdown("### Upload New Data to the Database")
|
| 226 |
-
gr.Markdown(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 227 |
with gr.Column():
|
| 228 |
upload_file_input = gr.File(
|
| 229 |
label="Upload ZIP file containing your data",
|
|
|
|
| 223 |
# --- TAB 2: UPLOAD ---
|
| 224 |
with gr.TabItem("Upload Data", id=1):
|
| 225 |
gr.Markdown("### Upload New Data to the Database")
|
| 226 |
+
gr.Markdown(
|
| 227 |
+
"""
|
| 228 |
+
Upload your own data in a `.zip` file with the following folder structure:
|
| 229 |
+
|
| 230 |
+
```
|
| 231 |
+
*.zip
|
| 232 |
+
βββ images/
|
| 233 |
+
βββ audios/
|
| 234 |
+
βββ texts/
|
| 235 |
+
```
|
| 236 |
+
|
| 237 |
+
Each folder can be empty, but **must exist** for the app to work properly.
|
| 238 |
+
"""
|
| 239 |
+
)
|
| 240 |
with gr.Column():
|
| 241 |
upload_file_input = gr.File(
|
| 242 |
label="Upload ZIP file containing your data",
|