Ignore the toggle intent ()

This commit is contained in:
Paulus Schoutsen 2024-05-30 12:53:50 -04:00 committed by GitHub
parent ae3741c364
commit 80588d9c67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -206,10 +206,11 @@ class AssistAPI(API):
"""API exposing Assist API to LLMs."""
IGNORE_INTENTS = {
intent.INTENT_NEVERMIND,
intent.INTENT_GET_STATE,
INTENT_GET_WEATHER,
INTENT_GET_TEMPERATURE,
INTENT_GET_WEATHER,
intent.INTENT_GET_STATE,
intent.INTENT_NEVERMIND,
intent.INTENT_TOGGLE,
}
def __init__(self, hass: HomeAssistant) -> None: