commit code
Some checks failed
Gitea Actions Demo / deploy (push) Failing after 2s

This commit is contained in:
2025-12-29 19:34:39 +08:00
parent 87160c5265
commit 6772699cfe
22 changed files with 2268 additions and 70 deletions

View File

@ -2,17 +2,19 @@
TTS (Text-to-Speech) 模块
提供统一的 TTS 引擎接口,支持多个 TTS 引擎的扩展。
当前支持: Edge-TTS
当前支持: Edge-TTS, CosyVoice
"""
from .base import TTSEngine
from .edge_tts_engine import EdgeTTSEngine
from .cosyvoice_engine import CosyVoiceEngine
from .factory import TTSEngineFactory, TTSEngineType
from .service import TTSService
__all__ = [
"TTSEngine",
"EdgeTTSEngine",
"CosyVoiceEngine",
"TTSEngineFactory",
"TTSEngineType",
"TTSService",