diff --git a/lib/secrets.dart b/lib/secrets.dart index d1b79a3..a9891ce 100644 --- a/lib/secrets.dart +++ b/lib/secrets.dart @@ -23,11 +23,11 @@ class Secrets { /// AI Mode: Proxy(Home) vs Direct(Cloud) /// If false, connects directly to Google Gemini API (Works anywhere). - /// Release build: --dart-define=USE_PROXY=true - /// Development default: true (use local Synology proxy) + /// Development (with Tailscale): --dart-define=USE_PROXY=true + /// General distribution: false (each user provides their own Gemini API key) static const bool useProxy = bool.fromEnvironment( 'USE_PROXY', - defaultValue: true, // ← 開発環境ではProxy使用 + defaultValue: false, // ← 一般配布用: Direct API(各自がAPIキー設定) );