fix(patch): cherry-pick 36feb73 to release/v0.13.0-preview.2-pr-12658 to patch version v0.13.0-preview.2 and create version 0.13.0-preview.3 (#12663)

Co-authored-by: Sandy Tao <sandytao520@icloud.com>
This commit is contained in:
gemini-cli-robot
2025-11-06 16:25:23 -08:00
committed by GitHub
parent 37670fe6e6
commit be36bf6193
5 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -1047,7 +1047,7 @@ const SETTINGS_SCHEMA = {
label: 'Use Write Todos',
category: 'Advanced',
requiresRestart: false,
default: true,
default: false,
description: 'Enable the write_todos_list tool.',
showInDialog: false,
},
+1 -1
View File
@@ -494,7 +494,7 @@ export class Config {
params.truncateToolOutputLines ?? DEFAULT_TRUNCATE_TOOL_OUTPUT_LINES;
this.enableToolOutputTruncation = params.enableToolOutputTruncation ?? true;
this.useSmartEdit = params.useSmartEdit ?? true;
this.useWriteTodos = params.useWriteTodos ?? true;
this.useWriteTodos = params.useWriteTodos ?? false;
this.initialUseModelRouter = params.useModelRouter ?? false;
this.useModelRouter = this.initialUseModelRouter;
this.disableModelRouterForAuth = params.disableModelRouterForAuth ?? [];