Files
Memoh/db/migrations/0067_drop_context_token_budget.down.sql
T
Acbox 84f1d0612a refactor: replace context_token_budget with model context_window for context trimming
The per-bot context_token_budget column was unused (no frontend UI) and
has been removed. Context trimming now derives the budget from the chat
model's context_window setting, which is already configured per model.
2026-04-14 21:04:42 +08:00

5 lines
158 B
SQL

-- 0067_drop_context_token_budget (down)
-- Restore the context_token_budget column.
ALTER TABLE bots ADD COLUMN IF NOT EXISTS context_token_budget INTEGER;