-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
50 lines (40 loc) · 1.23 KB
/
env.example
File metadata and controls
50 lines (40 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
# VAPI Configuration
VAPI_API_KEY=your_vapi_api_key_here
VAPI_AGENT_ID=your_vapi_agent_id_here
VAPI_PHONE_NUMBER_ID=your_vapi_phone_number_id_here
# ElevenLabs Conversational AI Configuration
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
AGENT_ID=your_elevenlabs_agent_id_here
BOYFRIEND_NAME=Unknown
PHONE_NUMBER=+1234567890
# Server Configuration
SERVER_HOST=0.0.0.0
SERVER_PORT=8000
DEBUG=True
# Ngrok Configuration (for webhooks)
NGROK_AUTH_TOKEN=your_ngrok_auth_token_here
NGROK_SUBDOMAIN=your_custom_subdomain_here
# Database Configuration
DATABASE_URL=postgresql://username:password@localhost:5432/vapi_backend
REDIS_URL=redis://localhost:6379
# Security
SECRET_KEY=your_secret_key_here
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# External APIs
OPENAI_API_KEY=your_openai_api_key_here
DEEPGRAM_API_KEY=your_deepgram_api_key_here
# Webhook URLs (will be set automatically when ngrok starts)
WEBHOOK_URL=https://your-ngrok-subdomain.ngrok.io
VAPI_WEBHOOK_URL=https://your-ngrok-subdomain.ngrok.io/webhooks/vapi
# Agent Configuration
AGENT_NAME=Assistant
AGENT_VOICE_ID=your_voice_id_here
AGENT_MODEL=gpt-4
AGENT_TEMPERATURE=0.7
AGENT_MAX_TOKENS=1000
# Phone Configuration
COUNTRY_CODE=US
# Logging
LOG_LEVEL=INFO
LOG_FILE=logs/app.log