Kokoro-FastAPI/api/src/services/__init__.py
remsky ce0ef3534a Add initial implementation of Kokoro TTS API with Docker GPU support
- 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
2024-12-30 04:17:50 -07:00

3 lines
76 B
Python

from .tts import TTSService, TTSModel
__all__ = ["TTSService", "TTSModel"]