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
<div><strong>${change}</strong><small>${after ? `Outcome: ${escapeHtml(after.taskStatus)}` : "No comparable outcome has been recorded."}</small></div>
57
+
<div><strong>${change}</strong><small>${after ? `Comparable outcome: ${escapeHtml(after.taskStatus)}` : "This session is reference data only. It does not prove savings."}</small></div>
<p>Every observed session begins with a baseline. Token Saver does not claim completed savings until a comparable outcome records usage, task status, and the applied fix.</p>
84
+
<h2>Verified savings, not raw history.</h2>
85
+
<p>Historical sessions are stored only as reference data. Token Saver shows a savings result here only after it observes a comparable successful outcome before and after optimization.</p>
${records.length ? records.map((record)=>recordCard(record,state)).join("") : `<article class="panel"><span class="eyebrow">NO RESULTS YET</span><h2>Waiting for the first comparable outcome</h2><p>Automatic connectors will create baselines as work happens. File import remains available for compatibility and testing.</p><button class="button ghost" id="proof-import">Import a file</button></article>`}
: `<article class="panel proof-empty-result"><span class="eyebrow">NO VERIFIED SAVINGS YET</span><h2>Your history was imported successfully.</h2><p>${baselines.length} historical session${baselines.length===1 ? " was" : "s were"} recorded as reference data. They are not savings claims. A verified result will appear after Token Saver observes a comparable task with an active optimization.</p></article>`}
101
+
102
+
${baselines.length ? `<details class="proof-baseline-archive"><summary><div><strong>Historical reference sessions</strong><small>Raw imported history is hidden by default because it is not proof of savings.</small></div><span>${baselines.length}</span></summary><div class="proof-grid">${baselines.map((record)=>recordCard(record,state)).join("")}</div></details>` : ""}`;
0 commit comments