Report Summary: {{ date }}

Total Prompts

{{ total_prompts }}

Malicious (Approx)

{{ malicious_count }}

Avg. Malicious Score

{{ "%.3f"|format(avg_score) }}

Avg. Uncertainty

{{ "%.3f"|format(avg_uncertainty) }}

Safe (Approx)

{{ safe_count }}
{% if has_time_data %}
{% endif %}

All Prompts

{% if has_time_data %}{% endif %} {% for item in prompts %} {% if has_time_data %}{% endif %} {% endfor %}
IDTimeMalicious Flag Score Uncertainty Prompt
{{ item.index }}{{ item.timestamp }} {% if item.is_malicious %} True {% else %} False {% endif %} {{ "%.4f"|format(item.malicious_score) }} {{ "%.4f"|format(item.uncertainty) }} {{ item.prompt[:80] }}...