{% extends "base.html" %} {% block title %}Import — {{ project.name }} — {{ app_name }}{% endblock %} {% block content %}

{% if modality == 'tabular' %} CSV with header row. Optional label column. {% elif modality == 'audio' %} JSONL: {"uri":"…","label":"…"} or {"uri":"…","transcript":"…"} {% elif modality == 'video' %} JSONL: {"uri":"…","label":"walk"} {% elif modality == 'llm' %} JSONL for instruction (instruction/output), preference (prompt/chosen/rejected), or RAG (query/contexts/answer). {% else %} JSONL lines: {"text":"…","label":"…"} or CSV with a text column. {% endif %}

{% if modality == 'text' %}
{% endif %} {% if modality in ['text','tabular','audio','video'] %}
{% endif %}
Cancel
{% endblock %}