-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 761 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (16 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Google Gemini API key — get one at https://aistudio.google.com/
GOOGLE_API_KEY=your_key_here
# Brain gRPC server address (Brain side: what to listen on, Body side: what to connect to)
A2C_BRAIN_HOST=localhost
A2C_BRAIN_PORT=50051
# Storage directory for sessions and device registry (default: ~/.a2c)
# A2C_STORAGE_DIR=~/.a2c
# Set to "true" to auto-approve all tool calls without user confirmation (yolo mode)
A2C_YOLO_MODE=false
# Optional: set a fixed device ID (if not set, a UUID is auto-generated and persisted)
# A2C_DEVICE_ID=my-workstation
# Enable the Brain HTTP admin API for daemon-mode task push.
# Keep disabled unless you intentionally run the Operator/API workflow.
A2C_ADMIN_ENABLED=false
A2C_ADMIN_HOST=127.0.0.1
A2C_ADMIN_PORT=50052