forked from OpenWhispr/openwhispr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (30 loc) · 1.44 KB
/
.env.example
File metadata and controls
40 lines (30 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Neon Auth (optional - for account features)
# Get your auth URL from the Neon console after enabling Neon Auth
VITE_NEON_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
# 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