RAGLint Enterprise Report {% if results.is_mock %} Mock Mode (Active) {% endif %}

Summary Metrics

Quality Overview

Score Distribution

Chunking
{{ results.chunk_stats.mean | round(0) }} chars
Avg Size
Retrieval
{{ results.retrieval_stats.precision | round(2) }}
Precision
Smart Score
{% set avg_faith = (results.faithfulness_scores | sum / results.faithfulness_scores | length) if results.faithfulness_scores else 0 %}
{{ avg_faith | round(2) }}
Avg Faithfulness

Detailed Analysis

{% for item in results.detailed_results %} {% endfor %}
Query Precision Recall Semantic Faithfulness
{{ item.query }} {{ item.metrics.precision | round(2) if item.metrics else 'N/A' }} {{ item.metrics.recall | round(2) if item.metrics else 'N/A' }} {{ item.semantic_score | round(2) if item.semantic_score is not none else 'N/A' }} {% if item.faithfulness_score is defined and item.faithfulness_score is not none %} {{ item.faithfulness_score | round(2) }} {% if item.faithfulness_score < 1.0 %} (Risk) {% endif %} {% else %} N/A {% endif %}