You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="status-badge" title="The resolved generation backend for this session.">Backend: {{ runtime_diagnostics.backend }}</span>
17
17
<spanclass="status-badge" title="The device currently used for inference.">Device: {{ runtime_diagnostics.active_device or runtime_diagnostics.configured_device or "n/a" }}</span>
@@ -27,7 +27,7 @@ <h1>{{ session.prompt }}</h1>
27
27
<sectionclass="card">
28
28
<divclass="section-head">
29
29
<h2>Current state</h2>
30
-
<span>Round {{ session.current_round }}</span>
30
+
<span>{% if session.current_round == 0 %}Not started yet{% else %}Round {{ session.current_round }}{% endif %}</span>
<spanclass="summary-label">Feedback mode <spanclass="help-tip inline" tabindex="0" role="note" aria-label="Feedback mode help" data-tooltip="This controls which feedback widget appears on each candidate card and how your selection is interpreted.">?</span></span>
<spanclass="summary-label">Steering vector <spanclass="help-tip inline" tabindex="0" role="note" aria-label="Steering vector help" data-tooltip="This is the current low-dimensional steering state that the updater moves after each round of feedback.">?</span></span>
<pclass="hint">{% if session.current_round == 0 %}Start by generating the first round. You will see one raw prompt baseline plus additional sampled variants.{% elif session.status == "awaiting_feedback" %}Review this round and submit feedback to unlock the next one.{% else %}Feedback is complete for the current round. You can continue exploring or open replay to review the history.{% endif %}</p>
<p>Role <spanclass="help-tip inline" tabindex="0" role="note" aria-label="Candidate role help" data-tooltip="Baseline is the raw prompt, incumbent is the previous winner, and sampler roles describe how other candidates were proposed.">?</span>: <strong>{{ candidate.sampler_role }}</strong></p>
81
-
<p>Steering <spanclass="help-tip inline" tabindex="0" role="note" aria-label="Candidate steering vector help" data-tooltip="This candidate's proposed steering coordinates for the current round.">?</span>: <code>{{ candidate.z }}</code></p>
82
77
</div>
83
78
{% if is_current_round and not round.feedback_events %}
<buttonclass="button" id="submit-feedback-button" data-round-id="{{ round.id }}" data-feedback-mode="{{ session.config.feedback_mode.value }}" title="Submit your current preference selections and update the session model.">Submit feedback</button>
146
+
<buttonclass="button" id="submit-feedback-button" data-round-id="{{ round.id }}" data-feedback-mode="{{ session.config.feedback_mode.value }}" data-session-id="{{ session.id }}" title="Apply your current preference selections and immediately generate the next round.">Submit feedback and generate next round</button>
0 commit comments