{% extends "base.html" %} {% block title %}Import — {{ project.name }} — {{ app_name }}{% endblock %} {% block content %}
{{ project.project_type.value | replace('_', ' ') | title }}
{% 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 %}
label
{"uri":"…","label":"…"}
{"uri":"…","transcript":"…"}
{"uri":"…","label":"walk"}
instruction
output
prompt
chosen
rejected
query
contexts
answer
{"text":"…","label":"…"}