# Better Auth (optional - for account features) # Self-hosted auth server URL (defaults to https://auth.openwhispr.com) VITE_AUTH_URL= # OpenWhispr Cloud API (optional - for cloud transcription) VITE_OPENWHISPR_API_URL= # OpenAI API Configuration # Get your API key from: https://platform.openai.com/api-keys OPENAI_API_KEY=your_openai_api_key_here # Optional: Customize the Whisper model # Available models: whisper-1 (default), whisper-1-large, whisper-1-large-v2 WHISPER_MODEL=whisper-1 # Optional: Set language for better transcription accuracy # Leave empty for auto-detection, or use language codes like 'en', 'es', 'fr', etc. LANGUAGE= # Optional: UI language for app interface and menus (en, es, fr, de, pt, it) UI_LANGUAGE=en # Anthropic API Configuration (optional - for Claude AI processing) # Get your API key from: https://console.anthropic.com/api-keys ANTHROPIC_API_KEY=your_anthropic_api_key_here # Google Gemini API Configuration (optional - for Gemini AI processing) # Get your API key from: https://aistudio.google.com/app/api-keys GEMINI_API_KEY=your_gemini_api_key_here # Groq API Configuration (optional - for ultra-fast cloud inference) # Get your API key from: https://console.groq.com/keys GROQ_API_KEY=your_groq_api_key_here # Tinfoil API Configuration (optional - for private cloud LLM inference) # Get your API key from: https://tinfoil.sh/inference TINFOIL_API_KEY=your_tinfoil_api_key_here # Mistral API Configuration (optional - for Voxtral transcription) # Get your API key from: https://console.mistral.ai/api-keys MISTRAL_API_KEY=your_mistral_api_key_here # Optional: Debug mode OPENWHISPR_LOG_LEVEL=debug