""" 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 )