{% extends "base.html" %} {% block title %}{% if source %}{{ source.title }}{% else %}Book not found{% endif %}{% endblock %} {% block content %} {% if source %}
{{ phrase_status_message }}
{% endif %}| Phrase | Status | Score | Count | Chapters |
|---|---|---|---|---|
| {{ candidate.phrase_text }} | {% if candidate.llm_judged %} {% if candidate.llm_keep %}Kept{% else %}Rejected{% endif %} {% else %} Candidate {% endif %} | {{ "%.2f"|format(candidate.candidate_score) }} | {{ candidate.raw_count }} | {{ candidate.chapter_count }} |
No candidate n-grams.
{% endif %}| Phrase | Type | Confidence | Importance |
|---|---|---|---|
| {{ phrase.phrase_text }} | {{ phrase.phrase_type or "phrase" }} | {{ "%.2f"|format(phrase.confidence) }} | {{ "%.2f"|format(phrase.importance) }} |
No protected phrases.
{% endif %}