{% extends "base.html" %} {% block content %}

Upload Data

Drop a file to get started — CSV, JSON, Parquet, Excel, PDF, DOCX

{% if not files %}
No files yet. Upload a file below and it will land in data/raw/. Then move to Configure to set your target column and pipeline.
{% endif %}
{# ── Upload zone ── #}
Upload File
Drop file here or click to browse
CSV, JSON, Parquet, Excel, PDF, DOCX, TXT
{# ── File list ── #}
Files in data/raw/ {{ files | length }} file(s)
{% if files %} {% for f in files %}
📄
{{ f.name }}
{{ f.size_kb }} KB
ready
{% endfor %} {% else %}
No files yet.
{% endif %}
Next Steps
{% if files %}

1. Go to Configure — your file is auto-detected there.

2. Pick your target column and algorithms.

3. Click Save, then go to Run and start the pipeline.

{% else %}

Upload a data file to enable the Configure step.

{% endif %}
{% endblock %}