Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions anton/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ class CoreSettings(BaseSettings):
# turn first hits the router model, which either answers trivial/from-
# context requests directly or delegates to the planning model (optionally
# preloading skills). The mechanism is the "thalamus" (see
# anton/core/llm/thalamus.py); the user-facing knobs stay "router". Off by
# default until evaluated; flip with ANTON_ROUTER_ENABLED=true.
router_enabled: bool = False
# anton/core/llm/thalamus.py); the user-facing knobs stay "router". On by
# default; disable with ANTON_ROUTER_ENABLED=false.
router_enabled: bool = True
# Output budget for the gating call. Deliberately small: a direct
# answer that doesn't fit here is evidence the turn wasn't trivial,
# and the router treats truncation as "delegate".
Expand Down
Loading