9 lines
331 B
Python
9 lines
331 B
Python
"""Backward-compatible imports for legacy siliconflow_tts module."""
|
|
|
|
from services.openai_compatible_tts import OpenAICompatibleTTSService, StreamingTTSAdapter
|
|
|
|
# Backward-compatible alias
|
|
SiliconFlowTTSService = OpenAICompatibleTTSService
|
|
|
|
__all__ = ["OpenAICompatibleTTSService", "SiliconFlowTTSService", "StreamingTTSAdapter"]
|