Add conversation supported feature CONTROL (#121036)
This commit is contained in:
parent
ac57eb7614
commit
a885bdfe76
5 changed files with 28 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
"""Const for conversation integration."""
|
||||
|
||||
from enum import IntFlag
|
||||
|
||||
DOMAIN = "conversation"
|
||||
DEFAULT_EXPOSED_ATTRIBUTES = {"device_class"}
|
||||
HOME_ASSISTANT_AGENT = "conversation.home_assistant"
|
||||
|
@ -12,3 +14,9 @@ ATTR_CONVERSATION_ID = "conversation_id"
|
|||
|
||||
SERVICE_PROCESS = "process"
|
||||
SERVICE_RELOAD = "reload"
|
||||
|
||||
|
||||
class ConversationEntityFeature(IntFlag):
|
||||
"""Supported features of the conversation entity."""
|
||||
|
||||
CONTROL = 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue