enable codebase investigator by default for preview (#12555)

This commit is contained in:
Silvio Junior
2025-11-04 17:30:01 -05:00
committed by GitHub
parent b6524e410a
commit 53c7646ed7
4 changed files with 15 additions and 15 deletions

View File

@@ -1234,7 +1234,7 @@ const SETTINGS_SCHEMA = {
label: 'Enable Codebase Investigator',
category: 'Experimental',
requiresRestart: true,
default: false,
default: true,
description: 'Enable the Codebase Investigator agent.',
showInDialog: true,
},
@@ -1243,7 +1243,7 @@ const SETTINGS_SCHEMA = {
label: 'Codebase Investigator Max Num Turns',
category: 'Experimental',
requiresRestart: true,
default: 15,
default: 10,
description:
'Maximum number of turns for the Codebase Investigator agent.',
showInDialog: true,
@@ -1253,7 +1253,7 @@ const SETTINGS_SCHEMA = {
label: 'Max Time (Minutes)',
category: 'Experimental',
requiresRestart: true,
default: 5,
default: 3,
description:
'Maximum time for the Codebase Investigator agent (in minutes).',
showInDialog: false,