speculative changes

This commit is contained in:
Your Name
2026-04-05 01:46:19 +00:00
parent 5873d7f6d2
commit f4e3132af9
21 changed files with 524 additions and 380 deletions
+3 -3
View File
@@ -887,15 +887,15 @@ export async function loadCliConfig(
const useGeneralistProfile =
settings.experimental?.generalistProfile ?? false;
const usePowerUserProfile =
settings.experimental?.powerUserProfile ?? false;
const usePowerUserProfile = settings.experimental?.powerUserProfile ?? false;
const useContextManagement =
settings.experimental?.contextManagement ?? false;
const contextManagement = {
...(useGeneralistProfile ? GENERALIST_PROFILE : {}),
...(usePowerUserProfile ? POWER_USER_PROFILE : {}),
...(useContextManagement ? settings?.contextManagement : {}),
enabled: useContextManagement || useGeneralistProfile || usePowerUserProfile,
enabled:
useContextManagement || useGeneralistProfile || usePowerUserProfile,
};
return new Config({
+2 -1
View File
@@ -2155,7 +2155,8 @@ const SETTINGS_SCHEMA = {
category: 'Experimental',
requiresRestart: true,
default: false,
description: 'Enables continuous minimal GC near the max tokens limit instead of a blocked backbuffer.',
description:
'Enables continuous minimal GC near the max tokens limit instead of a blocked backbuffer.',
showInDialog: true,
},
generalistProfile: {