diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 21:09:02 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 21:09:02 +0000 |
| commit | c6e4f9bbfdaa83efc7b6931fb9cc8c39efe44fd3 (patch) | |
| tree | 0e5b87420ce48ad37b6b1b285579796bbca6e21f /web/index.html | |
| parent | f0329108dac294be199f53102afafbe1c5c9ab97 (diff) | |
feat(web): remove Agent and Model selection from UI
As the system now automatically classifies and assigns the best agent and model per task, manual selection is no longer required and has been removed from New Task, Edit Task, and Template forms.
Diffstat (limited to 'web/index.html')
| -rw-r--r-- | web/index.html | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/web/index.html b/web/index.html index ae6c6d2..ad79cee 100644 --- a/web/index.html +++ b/web/index.html @@ -79,15 +79,6 @@ </button> <div id="validate-result" hidden></div> </div> - <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 12px;"> - <label>Agent Type - <select name="type"> - <option value="claude" selected>Claude</option> - <option value="gemini">Gemini</option> - </select> - </label> - <label>Model <input name="model" value="sonnet" placeholder="e.g. sonnet, gemini-2.0-flash"></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 @@ -109,15 +100,6 @@ <h2>New Template</h2> <label>Name <input name="name" required></label> <label>Description <textarea name="description" rows="2"></textarea></label> - <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 12px;"> - <label>Agent Type - <select name="type"> - <option value="claude" selected>Claude</option> - <option value="gemini">Gemini</option> - </select> - </label> - <label>Model <input name="model" value="sonnet" placeholder="e.g. sonnet, gemini-2.0-flash"></label> - </div> <label>Instructions <textarea name="instructions" rows="6" required></textarea></label> <label>Project Directory <input name="project_dir" placeholder="/path/to/repo"></label> <label>Max Budget (USD) <input name="max_budget_usd" type="number" step="0.01" value="1.00"></label> |
