mirror of https://github.com/home-assistant/core
138 lines
2.0 KiB
Python
138 lines
2.0 KiB
Python
"""Automatically generated file.
|
|
|
|
To update, run python3 -m script.amazon_polly
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
SUPPORTED_ENGINES: Final[set[str]] = {
|
|
"generative",
|
|
"long-form",
|
|
"neural",
|
|
"standard",
|
|
}
|
|
|
|
SUPPORTED_REGIONS: Final[set[str]] = {
|
|
"af-south-1",
|
|
"ap-east-1",
|
|
"ap-northeast-1",
|
|
"ap-northeast-2",
|
|
"ap-northeast-3",
|
|
"ap-south-1",
|
|
"ap-southeast-1",
|
|
"ap-southeast-2",
|
|
"ca-central-1",
|
|
"eu-central-1",
|
|
"eu-north-1",
|
|
"eu-west-1",
|
|
"eu-west-2",
|
|
"eu-west-3",
|
|
"me-south-1",
|
|
"sa-east-1",
|
|
"us-east-1",
|
|
"us-east-2",
|
|
"us-west-1",
|
|
"us-west-2",
|
|
}
|
|
|
|
SUPPORTED_VOICES: Final[set[str]] = {
|
|
"Aditi",
|
|
"Adriano",
|
|
"Amy",
|
|
"Andres",
|
|
"Aria",
|
|
"Arlet",
|
|
"Arthur",
|
|
"Astrid",
|
|
"Ayanda",
|
|
"Bianca",
|
|
"Brian",
|
|
"Burcu",
|
|
"Camila",
|
|
"Carla",
|
|
"Carmen",
|
|
"Celine",
|
|
"Chantal",
|
|
"Conchita",
|
|
"Cristiano",
|
|
"Daniel",
|
|
"Danielle",
|
|
"Dora",
|
|
"Elin",
|
|
"Emma",
|
|
"Enrique",
|
|
"Ewa",
|
|
"Filiz",
|
|
"Gabrielle",
|
|
"Geraint",
|
|
"Giorgio",
|
|
"Gregory",
|
|
"Gwyneth",
|
|
"Hala",
|
|
"Hannah",
|
|
"Hans",
|
|
"Hiujin",
|
|
"Ida",
|
|
"Ines",
|
|
"Isabelle",
|
|
"Ivy",
|
|
"Jacek",
|
|
"Jan",
|
|
"Joanna",
|
|
"Joey",
|
|
"Justin",
|
|
"Kajal",
|
|
"Karl",
|
|
"Kazuha",
|
|
"Kendra",
|
|
"Kevin",
|
|
"Kimberly",
|
|
"Laura",
|
|
"Lea",
|
|
"Liam",
|
|
"Lisa",
|
|
"Liv",
|
|
"Lotte",
|
|
"Lucia",
|
|
"Lupe",
|
|
"Mads",
|
|
"Maja",
|
|
"Marlene",
|
|
"Mathieu",
|
|
"Matthew",
|
|
"Maxim",
|
|
"Mia",
|
|
"Miguel",
|
|
"Mizuki",
|
|
"Naja",
|
|
"Niamh",
|
|
"Nicole",
|
|
"Ola",
|
|
"Olivia",
|
|
"Pedro",
|
|
"Penelope",
|
|
"Raveena",
|
|
"Remi",
|
|
"Ricardo",
|
|
"Ruben",
|
|
"Russell",
|
|
"Ruth",
|
|
"Salli",
|
|
"Seoyeon",
|
|
"Sergio",
|
|
"Sofie",
|
|
"Stephen",
|
|
"Suvi",
|
|
"Takumi",
|
|
"Tatyana",
|
|
"Thiago",
|
|
"Tomoko",
|
|
"Vicki",
|
|
"Vitoria",
|
|
"Zayd",
|
|
"Zeina",
|
|
"Zhiyu",
|
|
}
|