Skip to content

Commit cbb5e39

Browse files
fix(patch): cherry-pick 5b750f5 to release/v0.10.0-preview.3-pr-11615 to patch version v0.10.0-preview.3 and create version 0.10.0-preview.4 (#11625)
Co-authored-by: Silvio Junior <silviojr.dcc@gmail.com>
1 parent 845471e commit cbb5e39

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cli/src/config/settingsSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ const SETTINGS_SCHEMA = {
10901090
label: 'Enable Codebase Investigator',
10911091
category: 'Experimental',
10921092
requiresRestart: true,
1093-
default: true,
1093+
default: false,
10941094
description: 'Enable the Codebase Investigator agent.',
10951095
showInDialog: true,
10961096
},

packages/core/src/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ export class Config {
473473
this.enableMessageBusIntegration =
474474
params.enableMessageBusIntegration ?? false;
475475
this.codebaseInvestigatorSettings = {
476-
enabled: params.codebaseInvestigatorSettings?.enabled ?? true,
476+
enabled: params.codebaseInvestigatorSettings?.enabled ?? false,
477477
maxNumTurns: params.codebaseInvestigatorSettings?.maxNumTurns ?? 15,
478478
maxTimeMinutes: params.codebaseInvestigatorSettings?.maxTimeMinutes ?? 5,
479479
thinkingBudget:

0 commit comments

Comments
 (0)