{% extends "solo/base_solo.html" %} {% block title %}Edge Case Rules - Solo Mode{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Edge Case Rule Review

These rules were discovered from instances where the LLM was uncertain. Review each category and approve or reject it for inclusion in the annotation guidelines.

{{ stats.total_rules }} Rules Discovered
{{ stats.total_categories }} Categories
{{ stats.pending_categories }} Pending
{{ approved_count }} Approved
{{ rejected_count }} Rejected
{% if pending_categories %} {% for item in pending_categories %}

Category: {{ item.category.id }}

{{ item.category.summary_rule }}
{% for rule in item.member_rules %}
{{ rule.rule_text }}
Instance: {{ rule.instance_id }} | Confidence: {{ (rule.source_confidence * 100)|int }}%
{% endfor %}
{% endfor %} {% else %}

No pending categories to review.

{% if approved_count > 0 %}

{{ approved_count }} categories approved.

{% endif %}
{% endif %} {% if approved_count > 0 %}

{{ approved_count }} approved categories ready to be incorporated into the annotation prompt.

{% endif %}
Back to Annotation View Status
{% endblock %}