fix: add missing aux model slots to model picker

triage_specifier, kanban_decomposer, profile_describer exist in
DEFAULT_CONFIG auxiliary section but weren't in _AUX_TASK_SLOTS,
_AUX_TASKS, or the dashboard AUX_TASKS array — so users couldn't
configure them through hermes model or the web dashboard.

9â\x86\x9212 aux slots across all three UI surfaces.
This commit is contained in:
flooryyyy 2026-05-22 11:46:40 +01:00 committed by Teknium
parent 8b49012a0a
commit c1e93aa331
3 changed files with 9 additions and 0 deletions

View file

@ -980,6 +980,9 @@ _AUX_TASK_SLOTS: Tuple[str, ...] = (
"approval",
"mcp",
"title_generation",
"triage_specifier",
"kanban_decomposer",
"profile_describer",
"curator",
)