Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Google Assistant SDK integration."""
2 
3 from typing import Final
4 
5 DOMAIN: Final = "google_assistant_sdk"
6 
7 DEFAULT_NAME: Final = "Google Assistant SDK"
8 
9 CONF_LANGUAGE_CODE: Final = "language_code"
10 
11 DATA_MEM_STORAGE: Final = "mem_storage"
12 DATA_SESSION: Final = "session"
13 
14 # https://developers.google.com/assistant/sdk/reference/rpc/languages
15 SUPPORTED_LANGUAGE_CODES: Final = [
16  "de-DE",
17  "en-AU",
18  "en-CA",
19  "en-GB",
20  "en-IN",
21  "en-US",
22  "es-ES",
23  "es-MX",
24  "fr-CA",
25  "fr-FR",
26  "it-IT",
27  "ja-JP",
28  "ko-KR",
29  "pt-BR",
30 ]