forked from alexzh3/OpenHumanoid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 753 Bytes
/
.env.example
File metadata and controls
26 lines (20 loc) · 753 Bytes
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
# OpenHumanoid Configuration
# Copy to .env and fill in your values: cp .env.example .env
# Voice mode: "realtime" (fast, locomotion only) or "openclaw" (full orchestration)
VOICE_MODE=realtime
# OpenAI API key (required for both modes)
OPENAI_API_KEY=sk-...
# Bridge server URL (default: Docker on localhost)
BRIDGE_URL=http://localhost:8765
# Capability stack server URL (map/localize/navigate/perceive/manipulate)
CAPABILITY_SERVER_URL=http://localhost:8787
CAPABILITY_SERVER_HOST=127.0.0.1
CAPABILITY_SERVER_PORT=8787
CAPABILITY_STATE_PATH=capabilities/runtime/state.json
# Sensor and frame labels used by the capability stack
NAV_CAMERA_NAME=zed-mini
LIDAR_NAME=lidar
WORLD_FRAME=map
ROBOT_BASE_FRAME=base_link
# Logging level
LOG_LEVEL=INFO