mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 14:10:37 -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',
|
||||
category: 'Experimental',
|
||||
requiresRestart: true,
|
||||
default: true,
|
||||
default: false,
|
||||
description: 'Enable the Codebase Investigator agent.',
|
||||
showInDialog: true,
|
||||
},
|
||||
|
||||
@@ -474,7 +474,7 @@ export class Config {
|
||||
this.enableMessageBusIntegration =
|
||||
params.enableMessageBusIntegration ?? false;
|
||||
this.codebaseInvestigatorSettings = {
|
||||
enabled: params.codebaseInvestigatorSettings?.enabled ?? true,
|
||||
enabled: params.codebaseInvestigatorSettings?.enabled ?? false,
|
||||
maxNumTurns: params.codebaseInvestigatorSettings?.maxNumTurns ?? 15,
|
||||
maxTimeMinutes: params.codebaseInvestigatorSettings?.maxTimeMinutes ?? 5,
|
||||
thinkingBudget:
|
||||
|
||||
Reference in New Issue
Block a user