mirror of
https://github.com/snailyp/gemini-balance.git
synced 2026-05-11 10:00:37 +08:00
20 lines
550 B
Python
20 lines
550 B
Python
"""
|
|
原生Gemini TTS功能模块
|
|
Native Gemini TTS functionality for both single and multi-speaker 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"
|
|
]
|