{% extends "base.html" %} {% block title %}{% if source %}{{ source.title }}{% else %}Book not found{% endif %}{% endblock %} {% block content %} {% if source %}

{{ source.title }}

{{ source.author or "Unknown author" }}

{% if phrase_status_message %}

{{ phrase_status_message }}

{% endif %}
File
{{ source.file_path }}
Chapters
{{ chapter_count }}
Chunks
{{ chunk_count }}
Candidates
{{ candidate_count }}
Judged
{{ judged_candidate_count }}
Protected
{{ protected_count }}

Candidate n-grams

{% if candidates %} {% for candidate in candidates %} {% endfor %}
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 }}
{% else %}

No candidate n-grams.

{% endif %}

Protected phrases

{% if protected_phrases %} {% for phrase in protected_phrases %} {% endfor %}
Phrase Type Confidence Importance
{{ phrase.phrase_text }} {{ phrase.phrase_type or "phrase" }} {{ "%.2f"|format(phrase.confidence) }} {{ "%.2f"|format(phrase.importance) }}
{% else %}

No protected phrases.

{% endif %}
{% else %}

Book not found

{% endif %} {% endblock %}