fix(cli): disable follow-up suggestions by default

Most Qwen OAuth users don't have a fast model configured for this
feature, so it fires a wasted API request on every turn with no
visible benefit. Default to off; users can opt in via settings.
This commit is contained in:
tanzhenxin 2026-04-07 12:50:27 +00:00
parent 9b22c9fa7c
commit 03fdaf2faa
3 changed files with 3 additions and 3 deletions

View file

@ -518,7 +518,7 @@ const SETTINGS_SCHEMA = {
label: 'Enable Follow-up Suggestions',
category: 'UI',
requiresRestart: false,
default: true,
default: false,
description:
'Show context-aware follow-up suggestions after task completion. Press Tab or Right Arrow to accept, Enter to accept and submit.',
showInDialog: true,