-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (30 loc) · 1.55 KB
/
.env.example
File metadata and controls
39 lines (30 loc) · 1.55 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
# ---------------------------------------------------------
# Core Settings
# ---------------------------------------------------------
# The API provider used for Speech-to-Text and Text-to-Speech.
# Supported options: "openai", "gemini", "glm", or "doubao"
export AUDIO_PROVIDER="glm"
# Choose your animated character pack.
# Default options are "kirby" or "lobster" (loaded from the sprites directory)
export DISPLAY_CHARACTER="lobster"
# The username of your Raspberry Pi OS to correctly deploy system services
export PI_USER="pi"
# ---------------------------------------------------------
# OpenClaw Gateway
# ---------------------------------------------------------
# The authorization token provided to access your OpenClaw Gateway
export OPENCLAW_TOKEN="your-openclaw-gateway-token"
# The local or remote URL where the OpenClaw service is running
export OPENCLAW_BASE_URL="http://100.x.x.x:18789"
# ---------------------------------------------------------
# API Keys (Provide the ones matching your AUDIO_PROVIDER)
# ---------------------------------------------------------
export OPENAI_API_KEY="sk-your-openai-api-key"
export GEMINI_API_KEY="your-gemini-api-key"
export GLM_API_KEY="your-zhipu-glm-api-key"
export DOUBAO_ACCESS_TOKEN="your-volcengine-access-token"
export DOUBAO_APPID="your-volcengine-appid"
# ---------------------------------------------------------
# Note: For even more advanced customizations like silence limits
# and framerates, check and modify `core/config.py` directly.
# ---------------------------------------------------------