* Add pipeline option to save wake/stt audio to media * Add debug_recording_dir to assist_pipeline YAML config * Clean up and additional tests * Remove I/O in event loop * Organize saved audio by pipeline name and device id * Record wake/stt debug audio in separate thread * Fix after rebase * Use timestamp instead of pipeline id for directory name * Add WAV write error test * Join thread in executor
4 lines
114 B
Python
4 lines
114 B
Python
"""Constants for the Assist pipeline integration."""
|
|
DOMAIN = "assist_pipeline"
|
|
|
|
DATA_CONFIG = f"{DOMAIN}.config"
|