{% extends "base.html" %} {% set active = "ingest" %} {% block title %}Ingest — Communication DNA{% endblock %} {% block content %}

Ingest Transcription

{% if result %}
{% for r in result %}
{% if r.success %}
✓ {{ r.filename }}
ID: {{ r.tid }} · {{ "{:,}".format(r.words) }} words · {{ r.segments }} segments · Speakers: {{ r.speakers|join(', ') }}
{% else %}
✗ {{ r.filename }}
{{ r.error }}
{% endif %}
{% endfor %}
{% endif %}
📁 Drag & drop files here or click to browse
Supports .txt, .srt, .vtt, .json
{% endblock %}