15 lines
394 B
Python
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
|
|
)
|