mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2026-05-14 14:08:11 +08:00
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.
10 lines
372 B
Python
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",
|
|
]
|