From 35395fcb39824240629a108173f23a28cbe7e033 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 13 Apr 2025 13:35:50 +0300 Subject: [PATCH] Increase unlocked slider limits --- public/scripts/power-user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/scripts/power-user.js b/public/scripts/power-user.js index d27d62c31..570ddc655 100644 --- a/public/scripts/power-user.js +++ b/public/scripts/power-user.js @@ -71,8 +71,8 @@ export { export const MAX_CONTEXT_DEFAULT = 8192; export const MAX_RESPONSE_DEFAULT = 2048; -const MAX_CONTEXT_UNLOCKED = 200 * 1024; -const MAX_RESPONSE_UNLOCKED = 32 * 1024; +const MAX_CONTEXT_UNLOCKED = 512 * 1024; +const MAX_RESPONSE_UNLOCKED = 64 * 1024; const unlockedMaxContextStep = 512; const maxContextMin = 512; const maxContextStep = 64;