{% extends "solo/base_solo.html" %} {% block title %}Periodic Review - Solo Mode{% endblock %} {% block content %}

Periodic Review

Review these low-confidence LLM labels to ensure quality. You can approve or correct each one.

{% if current_instance %}
{{ current_instance.text }}
LLM Label: {{ current_instance.llm_label }}
{% if current_instance.reasoning %}

{{ current_instance.reasoning }}

{% endif %}
{% set conf = current_instance.confidence or 0.5 %} {% set conf_class = 'confidence-low' if conf < 0.5 else ('confidence-mid' if conf < 0.8 else 'confidence-high') %}

Confidence: {{ (conf * 100)|int }}%

Is this label correct?

← Back to Annotation
{% else %}

Review complete! Returning to annotation.

Continue Annotating →
{% endif %} {% endblock %} {% block stats %} {{ super() }}
To Review {{ instances|length if instances else 0 }}
{% endblock %} {% block extra_js %} {% endblock %}