diff options
Diffstat (limited to 'packages/cli/src/config/settingsSchema.ts')
| -rw-r--r-- | packages/cli/src/config/settingsSchema.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index 6d9e1f1e..7f28b698 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -524,6 +524,16 @@ export const SETTINGS_SCHEMA = { description: 'Skip the next speaker check.', showInDialog: true, }, + enablePromptCompletion: { + type: 'boolean', + label: 'Enable Prompt Completion', + category: 'General', + requiresRestart: true, + default: false, + description: + 'Enable AI-powered prompt completion suggestions while typing.', + showInDialog: true, + }, } as const; type InferSettings<T extends SettingsSchema> = { |
