Add required human review gate to the Agent pipeline #1

Open
woogi wants to merge 28 commits from agent-mode into main
Showing only changes of commit 6f10062b93 - Show all commits
+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>';
} }