feat: Implement Text-to-Speech (TTS) functionality with API endpoints, models, and service integration

This commit is contained in:
JSC
2025-09-20 23:10:47 +02:00
parent fb0e5e919c
commit 5e8d619736
11 changed files with 887 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ from .playlist_sound import PlaylistSound
from .scheduled_task import ScheduledTask
from .sound import Sound
from .sound_played import SoundPlayed
from .tts import TTS
from .user import User
from .user_oauth import UserOauth
@@ -27,6 +28,7 @@ __all__ = [
"ScheduledTask",
"Sound",
"SoundPlayed",
"TTS",
"User",
"UserOauth",
]