{{ debate.topic }}

辩论ID: {{ debate.id }} | 创建时间: {{ debate.created_at }}
{{ verdict.verdict }}

执行摘要

裁决

{{ verdict.verdict }}

置信度

{{ "%.1f"|format(verdict.confidence * 100) }}%

关键论点数

{{ verdict.winning_arguments | length }}
{% if verdict.conclusion_summary %}

结论摘要

{{ verdict.conclusion_summary }}

{% endif %} {% if verdict.winning_arguments %}

获胜论点

    {% for arg in verdict.winning_arguments %}
  • ✅ {{ arg }}
  • {% endfor %}
{% endif %} {% if verdict.decisive_evidence %}

决定性证据

    {% for evidence in verdict.decisive_evidence %}
  • 🔑 {{ evidence }}
  • {% endfor %}
{% endif %} {% if verdict.conditions %}

附加条件

    {% for condition in verdict.conditions %}
  • ⚡ {{ condition }}
  • {% endfor %}
{% endif %}

置信度变化轨迹

{% if charts.confidence_trajectory %} {{ charts.confidence_trajectory | safe }} {% else %}

暂无置信度轨迹数据

{% endif %}

论点分析

{% if charts.argument_comparison %}
{{ charts.argument_comparison | safe }}
{% endif %}

✅ 支持论点

{% for round in rounds %} {% if round.position and ('支持' in round.position or '正方' in round.position) %}
{{ round.role }} - 第{{ round.round_number }}轮
{% if round.arguments %}

{{ round.arguments }}

{% endif %} 置信度: {{ "%.0f"|format(round.confidence * 100) }}%
{% endif %} {% endfor %}

❌ 挑战论点

{% for round in rounds %} {% if round.position and ('反对' in round.position or '反方' in round.position) %}
{{ round.role }} - 第{{ round.round_number }}轮
{% if round.arguments %}

{{ round.arguments }}

{% endif %} 置信度: {{ "%.0f"|format(round.confidence * 100) }}%
{% endif %} {% endfor %}

证据分析

{% if charts.evidence_heatmap %} {{ charts.evidence_heatmap | safe }} {% else %}

暂无证据热力图数据

{% endif %}

角色分析

{% if charts.role_radar %} {{ charts.role_radar | safe }} {% else %}

暂无角色雷达图数据

{% endif %}
{% set roles = rounds | map(attribute='role') | unique | list %} {% if roles | length > 1 %}
全部 {% for role in roles %} {{ role }} {% endfor %}
{% for role in roles %}

{{ role }} 的发言

{% for round in rounds %} {% if round.role == role %}
第{{ round.round_number }}轮 {% if round.position %} | {{ round.position }}{% endif %}

{% if round.arguments %}{{ round.arguments }}{% endif %} {% if round.rebuttals %}

反驳: {{ round.rebuttals }} {% endif %} {% if round.concessions %}

让步: {{ round.concessions }} {% endif %}
{% endif %} {% endfor %}
{% endfor %} {% endif %}

可靠性评估

{% for score in reliability_scores %} {% endfor %}
论点摘要 可靠性评分 证据强度 偏见标记 盲点 审计角色
{{ score.argument_summary }} {{ "%.0f"|format(score.reliability_score * 100) }}% {% if score.evidence_strength == 'strong' %}强{% elif score.evidence_strength == 'moderate' %}中{% else %}弱{% endif %} {% if score.bias_flags %} {% for flag in score.bias_flags %} {{ flag }} {% endfor %} {% else %} {% endif %} {% if score.blind_spots %} {% for spot in score.blind_spots %}
• {{ spot }}
{% endfor %} {% else %} - {% endif %}
{{ score.auditor_role }}
{% if structured_dissent %}

结构化异议

异议提出者: {{ structured_dissent.dissenter_role }}

异议强度: {% if structured_dissent.overall_dissent_strength == 'high' %}高{% elif structured_dissent.overall_dissent_strength == 'medium' %}中{% else %}低{% endif %}
{% if structured_dissent.claims %}

异议主张

{% for claim in structured_dissent.claims %}
{{ claim.summary if claim.summary else '主张 ' ~ loop.index }}
{% if claim.details %}

{{ claim.details }}

{% endif %} {% if claim.evidence %}
证据: {{ claim.evidence }}
{% endif %}
{% endfor %} {% endif %} {% if structured_dissent.evidence_gaps %}

证据缺口

{% for gap in structured_dissent.evidence_gaps %}
⚠️ {{ gap }}
{% endfor %} {% endif %} {% if structured_dissent.confidence_trajectory %}

置信度变化

{{ structured_dissent.confidence_trajectory }}
{% endif %} {% if structured_dissent.recommended_monitoring %}

建议监控项

{% for item in structured_dissent.recommended_monitoring %}
{{ item }}
{% endfor %} {% endif %}
{% endif %}

辩论轮次详情

{% for round in rounds %}
第{{ round.round_number }}轮 - {{ round.role }} {% if round.position %} ({{ round.position }}){% endif %} {{ "%.0f"|format(round.confidence * 100) }}%
{% if round.arguments %}

论点

{{ round.arguments }}
{% endif %} {% if round.rebuttals %}

反驳

{{ round.rebuttals }}
{% endif %} {% if round.concessions %}

让步

{{ round.concessions }}
{% endif %}
{% endfor %}