mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
6 lines
300 B
SQL
6 lines
300 B
SQL
-- 0065_add_context_token_budget
|
|
-- Add context token budget and tool result persistence settings for large task optimization.
|
|
|
|
ALTER TABLE bots ADD COLUMN IF NOT EXISTS context_token_budget INTEGER;
|
|
ALTER TABLE bots ADD COLUMN IF NOT EXISTS persist_full_tool_results BOOLEAN NOT NULL DEFAULT false;
|