# Shared Module Common schemas and interfaces used across vixy-vision. ## Planned Components ### events.py Event schema definitions and queue interface. ```python @dataclass class SensorEvent: timestamp: datetime source_id: str # camera/mic ID event_type: str # "motion", "audio", "speech" confidence: float # 0.0 - 1.0 metadata: dict # type-specific data ```