-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
35 lines (30 loc) · 1.45 KB
/
Copy path.env.example
File metadata and controls
35 lines (30 loc) · 1.45 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
# Local development server
# BASE_URL is required by `make dev`; point it to agent-platform or agent-gateway.
# BASE_URL=http://localhost:11949
# PORT=11948
# Optional voice service. When omitted, voice proxy routes and UI entrypoints are disabled.
# VOICE_BASE_URL=http://localhost:11953
# Browser runtime mode
# BACKEND_MODE defaults to platform. Use gateway when BASE_URL points to
# agent-gateway and browser login/session is required.
# BACKEND_MODE=platform
# Optional frontend features. All default to false when omitted.
# DEBUG_PANEL_ENABLED=true
# SETTINGS_MENU_ENABLED=true
# QUICK_ACTIONS_ENABLED=true
# DEBUG_RUN_OBSERVATION_ENABLED=true
# DELTA_LOGS_ENABLED=true
# Downloaded conversation HTML loads its runtime assets from this public origin.
# Required only when exporting HTML. HTTPS is required except for loopback origins.
# CONVERSATION_EXPORT_ASSET_ORIGIN=http://127.0.0.1:11961
# Optional brand identity for HTML export; defaults to cutej when omitted.
# BRAND_ID=zenmind
# Frontend ASR client gate overrides
# The values shown below are the built-in defaults; omit them unless tuning is needed.
# These values control browser-side filtering before audio is sent as asr.audio.append.
# Higher RMS threshold filters more light voice / background noise.
# VOICE_ASR_CLIENT_GATE_ENABLED=true
# VOICE_ASR_CLIENT_GATE_RMS_THRESHOLD=0.008
# VOICE_ASR_CLIENT_GATE_OPEN_HOLD_MS=120
# VOICE_ASR_CLIENT_GATE_CLOSE_HOLD_MS=480
# VOICE_ASR_CLIENT_GATE_PRE_ROLL_MS=240