-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (26 loc) · 1.01 KB
/
Copy path.env.example
File metadata and controls
34 lines (26 loc) · 1.01 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
# Mixture of Voices - Environment Variables Example
# Copy this file to .env.local and fill in your actual API keys
# Anthropic API Key (for Claude)
# Get from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# OpenAI API Key (for ChatGPT)
# Get from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# xAI API Key (for Grok)
# Get from: https://console.x.ai/
XAI_API_KEY=your_xai_api_key_here
# DeepSeek API Key (for DeepSeek)
# Get from: https://platform.deepseek.com/
DEEPSEEK_API_KEY=your_deepseek_api_key_here
# Groq API Key (for Llama)
# Get from: https://console.groq.com/
GROQ_API_KEY=your_groq_api_key_here
# Development Configuration
NODE_ENV=development
# Next.js Configuration
NEXT_PUBLIC_APP_URL=http://localhost:3000
# Notes:
# - Never commit .env files to version control
# - Store API keys securely in production
# - Use environment-specific files (.env.local, .env.production)
# - All API keys are optional - the app will work with any subset of providers