Google Assistant SDK: support audio response playback (#85989)

* Google Assistant SDK: support response playback

* Update PATHS_WITHOUT_AUTH

* gassist-text==0.0.8

* address review comments
This commit is contained in:
tronikos
2023-01-24 08:19:23 -08:00
committed by GitHub
parent 80a8da26bc
commit 0daaa37e09
10 changed files with 244 additions and 24 deletions

View File

@@ -5,8 +5,12 @@ DOMAIN: Final = "google_assistant_sdk"
DEFAULT_NAME: Final = "Google Assistant SDK"
CONF_ENABLE_CONVERSATION_AGENT: Final = "enable_conversation_agent"
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",
@@ -24,5 +28,3 @@ SUPPORTED_LANGUAGE_CODES: Final = [
"ko-KR",
"pt-BR",
]
CONF_ENABLE_CONVERSATION_AGENT: Final = "enable_conversation_agent"