diff --git a/src/channels/setup.ts b/src/channels/setup.ts index fec72e7..055dcad 100644 --- a/src/channels/setup.ts +++ b/src/channels/setup.ts @@ -97,7 +97,7 @@ async function promptGroupSettings( const configure = await p.confirm({ message: 'Configure group chat settings?', - initialValue: hasExisting, + initialValue: false, }); if (p.isCancel(configure)) { p.cancel('Cancelled'); diff --git a/src/onboard.ts b/src/onboard.ts index 4948ec3..20c2d4a 100644 --- a/src/onboard.ts +++ b/src/onboard.ts @@ -997,7 +997,7 @@ async function stepProviders(config: OnboardConfig, env: Record) if (provider.id === 'openai') { const enableTranscription = await p.confirm({ message: 'Enable voice message transcription with this OpenAI key? (uses Whisper)', - initialValue: true, + initialValue: false, }); if (!p.isCancel(enableTranscription) && enableTranscription) { config.transcription.enabled = true; @@ -1191,7 +1191,7 @@ async function stepTranscription(config: OnboardConfig, forcePrompt?: boolean): const setupTranscription = await p.confirm({ message: 'Enable voice message transcription?', - initialValue: config.transcription.enabled, + initialValue: false, }); if (p.isCancel(setupTranscription)) { p.cancel('Setup cancelled'); process.exit(0); } config.transcription.enabled = setupTranscription;