forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
20 lines (18 loc) · 983 Bytes
/
Copy path.env.example
File metadata and controls
20 lines (18 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Hume AI Configuration (REQUIRED)
# Your Hume AI API key for emotion analysis
# Get it from: https://platform.hume.ai/
HUME_API_KEY=your_hume_api_key_here
# Omi Integration Configuration (REQUIRED for notifications)
# Your Omi App ID and API Key for sending notifications
# Get them from: Omi App → Apps → Create App → External Integration → Notifications
OMI_APP_ID=your_omi_app_id_here
OMI_API_KEY=your_omi_api_key_here
# Emotion Notification Configuration (OPTIONAL)
# Configure which emotions trigger notifications and thresholds
# Empty thresholds {} means notify for ALL top 3 emotions detected
# Format: JSON string
# Examples:
# - All emotions (default): {"notification_enabled":true,"emotion_thresholds":{}}
# - Specific emotions: {"notification_enabled":true,"emotion_thresholds":{"Joy":0.5,"Anger":0.7}}
# - Disabled: {"notification_enabled":false,"emotion_thresholds":{}}
EMOTION_NOTIFICATION_CONFIG={"notification_enabled":true,"emotion_thresholds":{}}