feat(core): Ship model steering by default.

This commit is contained in:
Your Name
2026-03-19 19:02:59 +00:00
parent 4e5dfd0cb7
commit 712588fe46
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1969,7 +1969,7 @@ const SETTINGS_SCHEMA = {
label: 'Model Steering',
category: 'Experimental',
requiresRestart: false,
default: false,
default: true,
description:
'Enable model steering (user hints) to guide the model during tool execution.',
showInDialog: true,
+1 -1
View File
@@ -1014,7 +1014,7 @@ export class Config implements McpContext, AgentLoopContext {
this.experimentalJitContext = params.experimentalJitContext ?? true;
this.topicUpdateNarration = params.topicUpdateNarration ?? false;
this.modelSteering = params.modelSteering ?? false;
this.modelSteering = params.modelSteering ?? true;
this.injectionService = new InjectionService(() =>
this.isModelSteeringEnabled(),
);