GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/unified_engine_delegates.py
baicai-1145 b046a093d3 Add unified engine delegates and orchestration components for enhanced TTS processing
Introduce new modules including EngineApiDelegates, EngineBridgeDelegates, EngineRegistryBridgeFacade, EngineRuntimeBridgeFacade, EngineStageBridgeFacade, and EngineStageOrchestrator. These additions provide a structured approach to managing TTS requests, engine states, and orchestration, significantly improving the architecture and maintainability of the TTS system. The new components support asynchronous operations and enhance overall performance through better request handling and processing capabilities.
2026-03-11 18:35:47 +08:00

10 lines
372 B
Python

from GPT_SoVITS.TTS_infer_pack.unified_engine_api_delegates import EngineApiDelegates
from GPT_SoVITS.TTS_infer_pack.unified_engine_bridge_delegates import EngineBridgeDelegates
from GPT_SoVITS.TTS_infer_pack.unified_engine_runtime_delegates import EngineRuntimeDelegates
__all__ = [
"EngineApiDelegates",
"EngineBridgeDelegates",
"EngineRuntimeDelegates",
]