orpheus-fastapi/tts_engine/__init__.py
2025-03-22 03:48:38 +11:00

15 lines
394 B
Python

"""
TTS Engine package for Orpheus text-to-speech system.
This package contains the core components for audio generation:
- inference.py: Token generation and API handling
- speechpipe.py: Audio conversion pipeline
"""
# Make key components available at package level
from .inference import (
generate_speech_from_api,
AVAILABLE_VOICES,
DEFAULT_VOICE,
list_available_voices
)