{% extends "base.html" %} {% block title %}Doc #{{ document.external_id }} ยท Sparsifire{% endblock %} {% block content %}
Torna al Dataset

Documento #{{ document.external_id }}

{% if document.status == 'done' %} Processato {% elif document.status == 'error' %} Errore {% else %} In Coda {% endif %}
Contenuto Testuale
{{ document.text }}
{% if document.status == 'error' %}
Errore di generazione

{{ document.error_message }}

{% endif %}
Vettore Embedding
{% if document.embedding %} {% endif %}
{% if document.embedding %}
[{{ document.embedding|slice:":5"|join:", " }}, ... ]
  • Dimensioni {{ document.embedding|length }} dim
  • Creato il {{ document.created_at|date:"d/m/Y H:i" }}
  • Model {{ dataset.get_model_name_display }}
{% else %}
In attesa di generazione...
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}