Home Assistant Unofficial Reference 2024.12.1
models.py
Go to the documentation of this file.
1 """Text-to-speech data models."""
2 
3 from dataclasses import dataclass
4 
5 
6 @dataclass(frozen=True)
7 class Voice:
8  """A TTS voice."""
9 
10  voice_id: str
11  name: str