-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (32 loc) · 1.53 KB
/
Copy path.env.example
File metadata and controls
40 lines (32 loc) · 1.53 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
# ============================================================================
# LLM Provider Configuration (at least ONE required)
# ============================================================================
# Set provider: "fireworks", "openrouter", "gemini", "openai"
LLM_PROVIDER=fireworks
# FireworksAI (recommended)
FIREWORKS_API_KEY=your_fireworks_api_key_here
FIREWORKS_MODEL=accounts/fireworks/models/qwen3-235b-a22b-instruct-2507
# OpenRouter (access to many models)
# OPENROUTER_API_KEY=your_openrouter_api_key_here
# OPENROUTER_MODEL=minimax/minimax-m2:free
# Google Gemini (free tier available)
# GEMINI_API_KEY=your_gemini_api_key_here
# GEMINI_MODEL=gemini-2.5-flash
# OpenAI
# OPENAI_API_KEY=your_openai_key_here
# OPENAI_MODEL=gpt-4o-mini
# ============================================================================
# LiveKit Configuration (required)
# ============================================================================
LIVEKIT_URL=wss://your-livekit-server.livekit.cloud
LIVEKIT_API_KEY=your_livekit_api_key_here
LIVEKIT_API_SECRET=your_livekit_api_secret_here
# ============================================================================
# Deepgram Configuration (required for STT/TTS)
# ============================================================================
DEEPGRAM_API_KEY=your_deepgram_api_key_here
# ============================================================================
# Server Configuration
# ============================================================================
API_HOST=0.0.0.0
API_PORT=8000