TrustReport

Version {{ report.version }} {{ report.timestamp }} Engine {{ report.engine_version }}
{{ report.verdict | upper }} Confidence: {{ "%.0f"|format(report.confidence) }}/100
{{ report.findings | length }}
Findings
{{ report.risks | length }}
Risks
{{ report.arbiters | length }}
Arbiters
{{ report.uncertainty | length }}
Uncertain
{% if report.findings %}

Findings ({{ report.findings | length }})

{% for f in report.findings %}
{{ f.area }} · Source: {{ f.source }}
{{ f.severity | upper }}
{{ f.description }}
{% if f.evidence %}
{{ f.evidence }}
{% endif %}
{% endfor %}
{% endif %} {% if report.risks %}

Risks ({{ report.risks | length }})

{% for r in report.risks %}
{{ r.level | upper }}
[{{ r.type }}] {{ r.description }}
{% if r.mitigation %}
Mitigation: {{ r.mitigation }}
{% endif %}
{% endfor %}
{% endif %} {% if report.arbiters %}

Arbiter Votes ({{ report.arbiters | length }})

{% for a in report.arbiters %} {% endfor %}
Role Model Verdict Score Issues
{{ a.role }} {{ a.model }} {% if a.passed %} [PASS] {% else %} [FAIL] {% endif %} {{ "%.0f"|format(a.score) }} {% if a.issues %}
    {% for issue in a.issues %}
  • {{ issue.get('description', issue) | string | truncate(100) }}
  • {% endfor %}
{% else %} {% endif %}
{% endif %} {% if report.uncertainty %}

Uncertainty — What the Engine Cannot Confirm ({{ report.uncertainty | length }})

{% for u in report.uncertainty %}
{{ u.severity | upper }} {{ u.area }}
Reason: {{ u.reason }}
Suggestion: {{ u.suggestion }}
{% endfor %}
{% endif %} {% if report.evidence %}

Evidence Chain

SHA-256: {{ report.evidence.hash[:24] }}...
Full Hash
{{ report.evidence.hash }}
Algorithm
{{ report.evidence.algorithm }}
Timestamp
{{ report.evidence.timestamp }}
Isolation
{{ report.evidence.isolation_level }}
{% if report.evidence.data_summary %} {% for k, v in report.evidence.data_summary.items() %}
{{ k }}
{{ v }}
{% endfor %} {% endif %}
{% if cost %}
Audit Details (click to expand)
{% for entry in cost.calls %} {% endfor %}
Model Provider Prompt Tokens Completion Tokens Cost (USD)
{{ entry.model }} {{ entry.provider }} {{ entry.prompt_tokens }} {{ entry.completion_tokens }} ${{ "%.4f"|format(entry.cost) }}

Total: ${{ "%.4f"|format(cost.total) }} {% if cost.comparison_total %}  Full audit estimate (all top-tier): ${{ "%.4f"|format(cost.comparison_total) }} {% endif %} {% if cost.cache_hit_rate is not none %}  Cache hit rate: {{ "%.0f"|format(cost.cache_hit_rate * 100) }}%, saved ~${{ "%.4f"|format(cost.cache_saved) }} {% endif %}

{% endif %}
{% endif %} {% if report.audit_log %}

Audit Log ({{ report.audit_log | length }} steps)

{% endif %}