Merge branch 'dev' into feat/cb2ri-gestures

This commit is contained in:
Björn Otgaar
2025-12-11 12:46:32 +01:00
22 changed files with 1066 additions and 34 deletions

View File

@@ -0,0 +1,16 @@
from enum import Enum
PROGRAM_STATUS = b"internal/program_status"
"""A topic key for the program status."""
class ProgramStatus(Enum):
"""
Used in internal communication, to tell agents what the status of the program is.
For example, the VAD agent only starts listening when the program is RUNNING.
"""
STARTING = b"starting"
RUNNING = b"running"
STOPPING = b"stopping"