Beispiel #1
0
        public void OnIntentRecognised(IntentRecognitionResult intent)
        {
            if (Memory.Sleep == true && intent.IntentId != "wake")
            {
                return;
            }

            if (IsHighEnoughCcore(intent))
            {
                skills.Handle(intent);
            }
        }