feat(core): Add --skip-next-speaker-check flag (#6589)

This commit is contained in:
Sandy Tao
2025-08-19 16:45:13 -07:00
committed by GitHub
parent 1ae70e6d0d
commit e3a3f97adf
5 changed files with 23 additions and 0 deletions
@@ -515,6 +515,15 @@ export const SETTINGS_SCHEMA = {
description: 'Show line numbers in the chat.',
showInDialog: true,
},
skipNextSpeakerCheck: {
type: 'boolean',
label: 'Skip Next Speaker Check',
category: 'General',
requiresRestart: false,
default: false,
description: 'Skip the next speaker check.',
showInDialog: true,
},
} as const;
type InferSettings<T extends SettingsSchema> = {