-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (44 loc) · 1.51 KB
/
Copy path.env.example
File metadata and controls
53 lines (44 loc) · 1.51 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
53
# ============================================================
# Interview Ace — Environment Configuration
# Copy this file to .env and fill in your values
# ============================================================
# --- LLM Provider (pick one or configure multiple) ---
# Supported: openai, anthropic, google, deepseek, openrouter
LLM_PROVIDER=openai
LLM_API_KEY=sk-your-api-key-here
LLM_MODEL=gpt-4o
# --- Fallback LLM (optional, used when primary fails) ---
# FALLBACK_PROVIDER=deepseek
# FALLBACK_API_KEY=sk-your-fallback-key
# FALLBACK_MODEL=deepseek-chat
# --- Vector Database (for RAG) ---
# Supported: chromadb (local), pinecone, weaviate
VECTOR_DB=chromadb
# PINECONE_API_KEY=
# PINECONE_ENVIRONMENT=
# --- Audio ---
# Audio capture device index (run `python -m scripts.list_devices` to find yours)
AUDIO_DEVICE_INDEX=0
# Sample rate (Hz)
SAMPLE_RATE=16000
# Silence threshold for voice activity detection
SILENCE_THRESHOLD=0.01
# Seconds of silence before segment is considered complete
SILENCE_DURATION=1.5
# --- Voice Profile ---
# Path to the candidate's voice embedding file
VOICE_PROFILE_PATH=./data/voice_profile.pkl
# --- Server ---
BACKEND_HOST=0.0.0.0
BACKEND_PORT=8000
FRONTEND_PORT=3000
# --- Whisper (Speech-to-Text) ---
# Options: tiny, base, small, medium, large-v3
WHISPER_MODEL=base
# Use GPU for Whisper if available
WHISPER_DEVICE=cpu
# --- Knowledge Base ---
# Directory to store ingested documents (resumes, job descriptions, etc.)
KNOWLEDGE_BASE_DIR=./data/knowledge_base
# --- Logging ---
LOG_LEVEL=INFO