mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-08-05 16:48:53 +00:00
17 lines
334 B
Python
17 lines
334 B
Python
from .schemas import (
|
|
CaptionedSpeechRequest,
|
|
CaptionedSpeechResponse,
|
|
OpenAISpeechRequest,
|
|
TTSStatus,
|
|
VoiceCombineRequest,
|
|
WordTimestamp,
|
|
)
|
|
|
|
__all__ = [
|
|
"OpenAISpeechRequest",
|
|
"CaptionedSpeechRequest",
|
|
"CaptionedSpeechResponse",
|
|
"WordTimestamp",
|
|
"TTSStatus",
|
|
"VoiceCombineRequest",
|
|
]
|