mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
84f1d0612a
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.
6 lines
243 B
SQL
6 lines
243 B
SQL
-- 0067_drop_context_token_budget
|
|
-- Remove the unused context_token_budget column from bots table.
|
|
-- Context trimming now derives the budget from the chat model's context_window.
|
|
|
|
ALTER TABLE bots DROP COLUMN IF EXISTS context_token_budget;
|