From 477b03870c36405b8db315b5daa660212ba8b105 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 31 May 2024 23:21:56 -0400 Subject: [PATCH] Add description to intent class example (#2201) --- docs/intent_handling.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/intent_handling.md b/docs/intent_handling.md index f16e8f8d..80211a34 100644 --- a/docs/intent_handling.md +++ b/docs/intent_handling.md @@ -23,6 +23,8 @@ class CountInvocationIntent(intent.IntentHandler): # Type of intent to handle intent_type = "CountInvocationIntent" + description = "Count how often it has been called" + # Optional. A validation schema for slots # slot_schema = { # 'item': cv.string