mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-11 20:07:00 -07:00
speculative changes
This commit is contained in:
@@ -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({
|
||||
|
||||
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user