16 lines
444 B
Python
16 lines
444 B
Python
# Configuration for the LLM-Powered Monitoring Agent
|
|
|
|
# Discord Webhook URL
|
|
DISCORD_WEBHOOK_URL = ""
|
|
|
|
# Home Assistant Configuration
|
|
HOME_ASSISTANT_URL = "http://<HOME_ASSISTANT_IP>:8123"
|
|
HOME_ASSISTANT_TOKEN = ""
|
|
GOOGLE_HOME_SPEAKER_ID = "media_player.your_speaker_entity_id"
|
|
|
|
# Daily Recap Time (in 24-hour format, e.g., "20:00")
|
|
DAILY_RECAP_TIME = "20:00"
|
|
|
|
# Test Mode (True to run once and exit, False to run continuously)
|
|
TEST_MODE = True
|