Kokoro-FastAPI/api/src/structures/__init__.py
2025-02-09 18:32:17 -07:00

17 lines
334 B
Python

from .schemas import (
CaptionedSpeechRequest,
CaptionedSpeechResponse,
OpenAISpeechRequest,
TTSStatus,
VoiceCombineRequest,
WordTimestamp,
)
__all__ = [
"OpenAISpeechRequest",
"CaptionedSpeechRequest",
"CaptionedSpeechResponse",
"WordTimestamp",
"TTSStatus",
"VoiceCombineRequest",
]