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
@@ -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(),
);