-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.docker.example
More file actions
52 lines (45 loc) · 1.11 KB
/
Copy path.env.docker.example
File metadata and controls
52 lines (45 loc) · 1.11 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
# Agent-SIP Docker environment — copy to .env and fill in your values.
# (cp .env.docker.example .env)
# --- SIP / FreePBX ---
SIP_SERVER_HOST=pbx.example.com
SIP_SERVER_PORT=5060
SIP_TRANSPORT=udp
SIP_USERNAME=200
SIP_AUTH_USERNAME=200
SIP_PASSWORD=your_sip_password
SIP_LOCAL_HOST=0.0.0.0
SIP_LOCAL_PORT=5062
SIP_ADVERTISE_HOST=192.168.1.10
SIP_RTP_PORT_START=40000
SIP_RTP_PORT_END=40100
SIP_CODEC=pcmu
# --- Voice provider (OpenAI Realtime) ---
VOICE_PROVIDER=openai
VOICE_API_KEY=sk-...
VOICE_BASE_URL=wss://api.openai.com/v1/realtime
VOICE_MODEL=gpt-realtime-2.1
VOICE_VOICE=marin
# --- Agent ---
AGENT_NAME=Agent
AGENT_CALLER_ID=200
AGENT_MAX_RINGS=6
AGENT_MAX_RING_SECONDS=30
AGENT_MAX_AGENT_TURNS=3
AGENT_END_GRACE_SECONDS=4
# --- MCP control ---
MCP_HOST=0.0.0.0
MCP_PORT=8765
MCP_AUTH_TOKEN=your_mcp_token
# --- Webhook (optional) ---
WEBHOOK_URL=
WEBHOOK_URL2=
WEBHOOK_AUTH_TOKEN=
WEBHOOK_NOTIFY_PARTIALS_INCOMING=false
WEBHOOK_NOTIFY_PARTIALS_OUTGOING=true
# --- Background noise ---
AMBIENT_ENABLED=true
AMBIENT_FILE=office.wav
AMBIENT_VOLUME=0.39
# --- Web UI login ---
WEB_USERNAME=admin
WEB_PASSWORD=change_me