mirror of https://github.com/home-assistant/core
31 lines
575 B
Python
31 lines
575 B
Python
"""Constants for Google Assistant SDK integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "google_assistant_sdk"
|
|
|
|
DEFAULT_NAME: Final = "Google Assistant SDK"
|
|
|
|
CONF_LANGUAGE_CODE: Final = "language_code"
|
|
|
|
DATA_MEM_STORAGE: Final = "mem_storage"
|
|
DATA_SESSION: Final = "session"
|
|
|
|
# https://developers.google.com/assistant/sdk/reference/rpc/languages
|
|
SUPPORTED_LANGUAGE_CODES: Final = [
|
|
"de-DE",
|
|
"en-AU",
|
|
"en-CA",
|
|
"en-GB",
|
|
"en-IN",
|
|
"en-US",
|
|
"es-ES",
|
|
"es-MX",
|
|
"fr-CA",
|
|
"fr-FR",
|
|
"it-IT",
|
|
"ja-JP",
|
|
"ko-KR",
|
|
"pt-BR",
|
|
]
|