Scores
Faithfulness
{{ (result.faithfulness_score or 0.0) | round(2) }}
Semantic Score
{{ (result.semantic_score or 0.0) | round(2) }}
{% if result.plugin_metrics %}
Plugin Metrics
{% for name, score in result.plugin_metrics.items() %}
{{ name | replace('_', ' ') | title }}
{{ score | round(2) }}
{% endfor %}
{% endif %}
Coherence
{% for score in result.coherence %}
Chunk {{ loop.index }}
{{ score | round(2) }}
{% endfor %}