mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-08-05 16:48:53 +00:00

- Set up FastAPI application with TTS service - Define API endpoints for TTS generation and voice listing - Implement Pydantic models for request and response schemas - Add Dockerfile and docker-compose.yml for containerization - Include example usage and benchmark results in README
3 lines
76 B
Python
3 lines
76 B
Python
from .tts import TTSService, TTSModel
|
|
|
|
__all__ = ["TTSService", "TTSModel"]
|