{% extends "solo/base_solo.html" %} {% block title %}Prompt Editor - Solo Mode{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Review Annotation Prompt

Review and edit the generated annotation prompt. This prompt will guide both you and the LLM during annotation.

← Back to Setup
{% if phase == 'prompt_validation' %} {# Edge cases already labeled; the only forward path is annotation. Showing "Generate Edge Cases" here dead-ends on an empty page. #} {% else %} {% endif %}
{% endblock %} {% block sidebar %}

Prompt History

{% if prompt_history %} {% for revision in prompt_history|reverse %}
v{{ revision.version }} {{ revision.source }}
{{ revision.timestamp[:19] }}
{{ revision.prompt[:50] }}...
{% endfor %} {% else %}

No previous versions

{% endif %}

Tips

{% endblock %} {% block extra_js %} {% endblock %}