File size: 225 Bytes
256e3e6 | 1 2 3 4 5 6 7 | """Text-to-speech generation modules"""
from .vllm_generator import VLLMTTSGenerator
from .chunking import split_into_sentences, estimate_duration
__all__ = ['VLLMTTSGenerator', 'split_into_sentences', 'estimate_duration']
|