{% extends "base.html" %} {% block title %}Feedback{% endblock %} {% block content %}

Feedback

Submit feedback to improve agent accuracy

📥 Export for Fine-tuning
{{ stats.total }}
Total Feedback
{{ stats.positive }}
Positive
{{ stats.negative }}
Negative
{% if stats.total > 0 %} {{ "%.0f"|format(stats.positive / stats.total * 100) }}% {% else %} — {% endif %}
Satisfaction Rate

💬 Submit Feedback

📋 Recent Feedback

{% include "partials/feedback_history.html" %}
{% endblock %}