LLM Classification
{% if entry.llm_classification %}
Classification
{{ classification_labels.get(entry.llm_classification, entry.llm_classification) }}
Confidence
{% if entry.llm_confidence is not none %}{{ (entry.llm_confidence * 100)|int }}%{% else %}—{% endif %}
Model
{{ entry.llm_model or '—' }}
Tokens
{% if entry.llm_input_tokens %}{{ entry.llm_input_tokens + (entry.llm_output_tokens or 0) }}{% else %}—{% endif %}
{% if entry.llm_input_tokens %}
{{ entry.llm_input_tokens }} in / {{ entry.llm_output_tokens or 0 }} out
{% endif %}
{% if entry.llm_reasoning %}
Reasoning
{{ entry.llm_reasoning }}
{% endif %}
{% if entry.llm_raw_response %}
Raw LLM response
{{ entry.llm_raw_response | tojson(indent=2) }}
{% endif %}
{% else %}
No LLM classification data.
{% endif %}