# text_to_audio.py
import os

class TextToAudio:
    def speak(self, text):
        os.system(f'echo "{text}" | festival --tts')
