File size: 479 Bytes
06a06a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

"""
Chatterbox TTS API package.

This package provides a modular text-to-speech API using the Chatterbox TTS model
deployed on Modal with GPU acceleration.
"""

from .config import app, image
from .models import TTSRequest, TTSResponse, HealthResponse
from .audio_utils import AudioUtils
from .tts_service import ChatterboxTTSService

__all__ = [
    "app",
    "image", 
    "TTSRequest",
    "TTSResponse",
    "HealthResponse",
    "AudioUtils",
    "ChatterboxTTSService"
]