You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cli/settings.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ they appear in the UI.
29
29
| Enable Auto Update |`general.enableAutoUpdate`| Enable automatic updates. |`true`|
30
30
| Enable Notifications |`general.enableNotifications`| Enable run-event notifications for action-required prompts and session completion. Currently macOS only. |`false`|
31
31
| Plan Directory |`general.plan.directory`| The directory where planning artifacts are stored. If not specified, defaults to the system temporary directory. |`undefined`|
32
+
| Plan Model Routing |`general.plan.modelRouting`| Automatically switch between Pro and Flash models based on Plan Mode status. Uses Pro for the planning phase and Flash for the implementation phase. |`true`|
32
33
| Max Chat Model Attempts |`general.maxAttempts`| Maximum number of attempts for requests to the main chat model. Cannot exceed 10. |`10`|
33
34
| Debug Keystroke Logging |`general.debugKeystrokeLogging`| Enable debug logging of keystrokes to the console. |`false`|
Copy file name to clipboardExpand all lines: packages/cli/src/config/settingsSchema.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -285,6 +285,16 @@ const SETTINGS_SCHEMA = {
285
285
'The directory where planning artifacts are stored. If not specified, defaults to the system temporary directory.',
286
286
showInDialog: true,
287
287
},
288
+
modelRouting: {
289
+
type: 'boolean',
290
+
label: 'Plan Model Routing',
291
+
category: 'General',
292
+
requiresRestart: false,
293
+
default: true,
294
+
description:
295
+
'Automatically switch between Pro and Flash models based on Plan Mode status. Uses Pro for the planning phase and Flash for the implementation phase.',
0 commit comments