mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 07:30:52 -07:00
fix(config): Disable CI for stable release (#11615)
This commit is contained in:
@@ -1090,7 +1090,7 @@ const SETTINGS_SCHEMA = {
|
|||||||
label: 'Enable Codebase Investigator',
|
label: 'Enable Codebase Investigator',
|
||||||
category: 'Experimental',
|
category: 'Experimental',
|
||||||
requiresRestart: true,
|
requiresRestart: true,
|
||||||
default: true,
|
default: false,
|
||||||
description: 'Enable the Codebase Investigator agent.',
|
description: 'Enable the Codebase Investigator agent.',
|
||||||
showInDialog: true,
|
showInDialog: true,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -474,7 +474,7 @@ export class Config {
|
|||||||
this.enableMessageBusIntegration =
|
this.enableMessageBusIntegration =
|
||||||
params.enableMessageBusIntegration ?? false;
|
params.enableMessageBusIntegration ?? false;
|
||||||
this.codebaseInvestigatorSettings = {
|
this.codebaseInvestigatorSettings = {
|
||||||
enabled: params.codebaseInvestigatorSettings?.enabled ?? true,
|
enabled: params.codebaseInvestigatorSettings?.enabled ?? false,
|
||||||
maxNumTurns: params.codebaseInvestigatorSettings?.maxNumTurns ?? 15,
|
maxNumTurns: params.codebaseInvestigatorSettings?.maxNumTurns ?? 15,
|
||||||
maxTimeMinutes: params.codebaseInvestigatorSettings?.maxTimeMinutes ?? 5,
|
maxTimeMinutes: params.codebaseInvestigatorSettings?.maxTimeMinutes ?? 5,
|
||||||
thinkingBudget:
|
thinkingBudget:
|
||||||
|
|||||||
Reference in New Issue
Block a user