-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
65 lines (54 loc) · 1.23 KB
/
env.example
File metadata and controls
65 lines (54 loc) · 1.23 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
54
55
56
57
58
59
60
61
62
63
64
65
# Lighthouse.ai Configuration
# Copy this file to .env and customize as needed
# Domain Security
ALLOWED_DOMAINS=google.com,amazon.com,github.com,wikipedia.org,example.com
RESTRICTED_ACTIONS=delete,purchase,payment,account_change
# Browser Settings
HEADLESS_MODE=false
BROWSER_TIMEOUT=10
BROWSER_WIDTH=1280
BROWSER_HEIGHT=720
USER_AGENT=Lighthouse.ai/1.0
# Audio Settings
AUDIO_DEVICE=default
SAMPLE_RATE=16000
CHUNK_SIZE=1024
VAD_AGGRESSIVENESS=2
SILENCE_THRESHOLD=0.5
# Speech Recognition (Whisper)
WHISPER_MODEL=base
WHISPER_LANGUAGE=en
WHISPER_TASK=transcribe
# Text-to-Speech (Coqui TTS)
TTS_MODEL=tts_models/en/ljspeech/tacotron2-DDC
TTS_SPEAKER_ID=0
TTS_SPEED=1.0
# Natural Language Understanding
NLU_CONFIDENCE_THRESHOLD=0.7
MAX_RETRIES=3
RETRY_DELAY=1.0
# Privacy & Security
LOCAL_PROCESSING=true
LOG_LEVEL=INFO
REDACT_PII=true
ENCRYPT_LOGS=true
# API Settings
API_HOST=0.0.0.0
API_PORT=8000
API_WORKERS=1
CORS_ORIGINS=*
# Session Management
SESSION_TIMEOUT=3600
MAX_SESSIONS=10
CLEANUP_INTERVAL=300
# Optional Cloud Services (require explicit opt-in)
# AZURE_SPEECH_KEY=
# AZURE_SPEECH_REGION=
# GOOGLE_CLOUD_CREDENTIALS_PATH=
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
# AWS_REGION=
# Development
DEBUG=false
RELOAD=false
TEST_MODE=false