Interface WakeWordDetection

interface WakeWordDetection {
    keyword: string;
    confidence?: number;
    providerId?: string;
    metadata?: Record<string, unknown>;
}

Properties

keyword: string
confidence?: number
providerId?: string
metadata?: Record<string, unknown>