mirror of
https://github.com/snailyp/gemini-balance.git
synced 2026-06-03 06:39:56 +08:00
- Remove references to deleted tts_config.py - Simplify tts_routes.py to directly return TTSGeminiChatService - Update __init__.py imports - Prepare for multi-speaker TTS testing
20 lines
532 B
Python
20 lines
532 B
Python
"""
|
|
多人对话TTS功能模块
|
|
Multi-speaker TTS functionality for conversation scenarios
|
|
"""
|
|
|
|
from .tts_chat_service import TTSGeminiChatService
|
|
from .tts_models import TTSGenerationConfig, MultiSpeakerVoiceConfig, SpeechConfig, TTSRequest
|
|
from .tts_response_handler import TTSResponseHandler
|
|
from .tts_routes import get_tts_chat_service
|
|
|
|
__all__ = [
|
|
"TTSGeminiChatService",
|
|
"TTSGenerationConfig",
|
|
"MultiSpeakerVoiceConfig",
|
|
"SpeechConfig",
|
|
"TTSRequest",
|
|
"TTSResponseHandler",
|
|
"get_tts_chat_service"
|
|
]
|