{% extends 'base.html' %} {% block content %}

Conversation Intent Analysis

Conversation ID: {{ conversation.id }}

{% if intent_predictions %} {% for prediction in intent_predictions %} {% endfor %}
Message Predicted Intent Confidence
{{ prediction.message.content }} {{ prediction.intent.name }} {{ prediction.confidence_score|floatformat:2 }}
{% else %}

No intent predictions available for this conversation.

{% endif %} Back to Conversation {% endblock %}