File size: 970 Bytes
d28d854
 
 
 
 
 
 
 
 
 
 
 
 
 
1766da1
 
 
 
 
 
d28d854
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- ── Synthèse factuelle (Sprint 18) ─────────────────────────────── -->
{% if synthesis and synthesis.sentences %}
<section class="synth-card" aria-labelledby="synth-title">
  <header class="synth-header">
    <h2 id="synth-title" data-i18n="synth_title">Synthèse factuelle</h2>
    <span class="synth-hint" data-i18n="synth_hint">
      Générée mécaniquement depuis les résultats — aucun LLM, reproductible.
    </span>
  </header>
  <ul class="synth-list">
    {% for sentence in synthesis.sentences %}
    <li>{{ sentence }}</li>
    {% endfor %}
  </ul>
  <p class="synth-cases-link" data-i18n="synth_cases_link">
    Pour comprendre comment d'autres équipes ont raisonné sur des problèmes
    similaires, voir
    <a href="https://github.com/maribakulj/Picarones/tree/main/docs/case-studies"
       target="_blank" rel="noopener">les études de cas</a>.
  </p>
</section>
{% endif %}