feat(core): enable disableLLMCorrection by default (#17223)

This commit is contained in:
Sandy Tao
2026-01-21 10:53:41 -08:00
committed by GitHub
parent eb2af84bb9
commit f79124f96e
9 changed files with 33 additions and 18 deletions
+1 -1
View File
@@ -634,7 +634,7 @@ export class Config {
this._activeModel = params.model;
this.enableAgents = params.enableAgents ?? false;
this.agents = params.agents ?? {};
this.disableLLMCorrection = params.disableLLMCorrection ?? false;
this.disableLLMCorrection = params.disableLLMCorrection ?? true;
this.planEnabled = params.plan ?? false;
this.enableEventDrivenScheduler =
params.enableEventDrivenScheduler ?? false;