diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 20:50:21 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 20:50:21 +0000 |
| commit | 406247b14985ab57902e8e42898dc8cb8960290d (patch) | |
| tree | 4a93be793f541038dd5d3fc154563051ba151b50 /web/index.html | |
| parent | 0ff0bf75544bbf565288e61bb8e10c3f903830f8 (diff) | |
feat(executor): implement Gemini-based task classification and load balancing
- Add Classifier using gemini-2.0-flash-lite to automatically select agent/model.
- Update Pool to track per-agent active tasks and rate limit status.
- Enable classification for all tasks (top-level and subtasks).
- Refine SystemStatus to be dynamic across all supported agents.
- Add unit tests for the classifier and updated pool logic.
- Minor UI improvements for project selection and 'Start Next' action.
Diffstat (limited to 'web/index.html')
| -rw-r--r-- | web/index.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/web/index.html b/web/index.html index d7fb591..629b248 100644 --- a/web/index.html +++ b/web/index.html @@ -11,6 +11,7 @@ <body> <header> <h1>Claudomator</h1> + <button id="btn-start-next" class="btn-secondary">Start Next</button> <button id="btn-new-task" class="btn-primary">New Task</button> </header> <nav class="tab-bar"> @@ -24,7 +25,6 @@ <button class="filter-tab active" data-filter="active">Active</button> <button class="filter-tab" data-filter="done">Done</button> <button class="filter-tab" data-filter="all">All</button> - <button id="btn-start-next" class="btn-secondary btn-sm">Start Next</button> </div> <div class="task-list"> <div id="loading">Loading tasks…</div> @@ -56,6 +56,15 @@ <p class="elaborate-hint">AI will fill in the form fields below. You can edit before submitting.</p> </div> <hr class="form-divider"> + <label>Project + <select id="project-select" name="working_dir"> + <option value="/workspace/claudomator" selected>/workspace/claudomator</option> + <option value="__new__">Create new project…</option> + </select> + </label> + <div id="new-project-row" hidden> + <label>New Project Path <input id="new-project-input" placeholder="/workspace/my-new-app"></label> + </div> <label>Name <input name="name" required></label> <label>Instructions <textarea name="instructions" rows="6" required></textarea></label> <div class="validate-section"> @@ -73,15 +82,6 @@ </label> <label>Model <input name="model" value="sonnet" placeholder="e.g. sonnet, gemini-2.0-flash"></label> </div> - <label>Project - <select id="project-select" name="working_dir"> - <option value="/workspace/claudomator" selected>/workspace/claudomator</option> - <option value="__new__">Create new project…</option> - </select> - </label> - <div id="new-project-row" hidden> - <label>New Project Path <input id="new-project-input" placeholder="/workspace/my-new-app"></label> - </div> <label>Max Budget (USD) <input name="max_budget_usd" type="number" step="0.01" value="1.00"></label> <label>Timeout <input name="timeout" value="15m"></label> <label>Priority |
