2023-04-13 21:25:38 +00:00
|
|
|
"""Constants for the Assist pipeline integration."""
|
|
|
|
DOMAIN = "assist_pipeline"
|
2023-08-30 03:07:27 +00:00
|
|
|
|
|
|
|
DATA_CONFIG = f"{DOMAIN}.config"
|
2023-10-06 07:18:35 +00:00
|
|
|
|
|
|
|
DEFAULT_PIPELINE_TIMEOUT = 60 * 5 # seconds
|
|
|
|
|
|
|
|
DEFAULT_WAKE_WORD_TIMEOUT = 3 # seconds
|
|
|
|
|
|
|
|
CONF_DEBUG_RECORDING_DIR = "debug_recording_dir"
|
|
|
|
|
|
|
|
DATA_LAST_WAKE_UP = f"{DOMAIN}.last_wake_up"
|
|
|
|
DEFAULT_WAKE_WORD_COOLDOWN = 2 # seconds
|
2023-11-16 16:28:06 +00:00
|
|
|
|
|
|
|
EVENT_RECORDING = f"{DOMAIN}_recording"
|