Alina Lozovskaya
commited on
Commit
·
ed54435
1
Parent(s):
1d985fe
Add .env example
Browse files- .env.example +28 -0
.env.example
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
OPENAI_API_KEY=
|
| 2 |
+
MODEL_NAME="gpt-4o-realtime-preview-2025-06-03"
|
| 3 |
+
|
| 4 |
+
# Please, change to "false" when you test on a real robot
|
| 5 |
+
# Bool params are case sensitive currently
|
| 6 |
+
SIM=true
|
| 7 |
+
LOG_LEVEL=INFO
|
| 8 |
+
|
| 9 |
+
# Keep it as is, but it's to replace inside main later
|
| 10 |
+
SAMPLE_RATE=24000
|
| 11 |
+
|
| 12 |
+
# To be changed, keep as is
|
| 13 |
+
AUDIO_IN=ReSpeaker Lite
|
| 14 |
+
AUDIO_OUT=ReSpeaker Lite
|
| 15 |
+
|
| 16 |
+
# Should correctly detect the plugged-in Reachy
|
| 17 |
+
# To be changed as well
|
| 18 |
+
CAMERA_INDEX=0
|
| 19 |
+
|
| 20 |
+
# "true" to enable vision
|
| 21 |
+
VISION_ENABLED=true
|
| 22 |
+
|
| 23 |
+
# If "SIM=true" head tracking is disabled
|
| 24 |
+
# Change to "true" when SIM is "false"
|
| 25 |
+
HEAD_TRACKING=false
|
| 26 |
+
|
| 27 |
+
# Cache for local VLM
|
| 28 |
+
HF_HOME=./cache
|