Agent-mode UI: remove hybrid compute option, add clickable sheet links in review queue.
Docker Release / build-and-push (push) Successful in 1m1s
Docker Release / release (push) Skipped

This commit is contained in:
2026-08-05 15:28:09 -05:00
parent 7488cf68c5
commit 6f10062b93
+3 -2
View File
@@ -126,8 +126,6 @@
<label>&#9881;&#65039; Compute <span class="opt">(text stages; vision always runs on the API)</span></label> <label>&#9881;&#65039; Compute <span class="opt">(text stages; vision always runs on the API)</span></label>
<label style="display:block;font-weight:400;margin-top:6px"> <label style="display:block;font-weight:400;margin-top:6px">
<input type="radio" name="compute" value="openrouter" checked> OpenRouter &mdash; all stages (fastest, paid)</label> <input type="radio" name="compute" value="openrouter" checked> OpenRouter &mdash; all stages (fastest, paid)</label>
<label style="display:block;font-weight:400;margin-top:6px">
<input type="radio" name="compute" value="local"> Hybrid &mdash; text stages on local LLM (cheaper, slower)</label>
<div id="modelPick" style="margin-top:10px"> <div id="modelPick" style="margin-top:10px">
<div class="field"> <div class="field">
<span>Vision model <span class="opt">(image stages)</span> <span class="opt" id="modelNote">loading...</span></span> <span>Vision model <span class="opt">(image stages)</span> <span class="opt" id="modelNote">loading...</span></span>
@@ -544,6 +542,9 @@ function reviewItemHtml(item,uid,prev){
esc(e.source_text)+'"</div>').join('')+'</div>'; esc(e.source_text)+'"</div>').join('')+'</div>';
} }
} }
if((p.sheets||[]).length){
html+='<div class="meta">Sheets: '+sheetList(p.sheets)+'</div>';
}
if((item.reasons||[]).length){ if((item.reasons||[]).length){
html+='<div class="meta">Review triggers: '+esc(item.reasons.join(', '))+'</div>'; html+='<div class="meta">Review triggers: '+esc(item.reasons.join(', '))+'</div>';
} }