-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathenv.config.example
More file actions
53 lines (41 loc) · 1.99 KB
/
env.config.example
File metadata and controls
53 lines (41 loc) · 1.99 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
41
42
43
44
45
46
47
48
49
50
51
52
# Speech Provider Configuration Example
# =====================================
# This is an example configuration file for speech providers.
# Copy this file to env.config and fill in your API keys.
# Deepgram API Configuration
# Get your API key from: https://console.deepgram.com/
DEEPGRAM_API_KEY=your_deepgram_api_key_here
# AssemblyAI API Configuration
# Get your API key from: https://www.assemblyai.com/app/
ASSEMBLYAI_API_KEY=your_assemblyai_api_key_here
# Together AI API Configuration
# Get your API key from: https://api.together.xyz/settings/api-keys
TOGETHER_API_KEY=your_together_api_key_here
# ElevenLabs API Configuration
# Get your API key from: https://elevenlabs.io/app/settings/api-keys
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
# Note: Local models (faster_whisper, parakeet) do not require API keys
# and will work without any configuration above.
# =============================================================================
# LLM Provider Configuration
# =============================================================================
# Configure API keys for LLM providers below.
# Only fill in the keys for the providers you plan to use.
# Leave empty if you're only using local models (ollama).
# OpenAI API Configuration
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# Google Gemini API Configuration
# Get your API key from: https://makersuite.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# Grok (xAI) API Configuration
# Get your API key from: https://x.ai/api
GROK_API_KEY=your_grok_api_key_here
# Note: Ollama runs locally and does not require an API key.
# Make sure Ollama is installed and running: https://ollama.ai/
# =============================================================================
# Additional Configuration (Optional)
# =============================================================================
DEFAULT_SPEECH_PROVIDER=faster_whisper
DEFAULT_LLM_PROVIDER=ollama
MAX_CONCURRENT_REQUESTS=5