from .whisper_stt import WhisperSTT

def get_stt(engine):
    if engine == "whisper":
        return WhisperSTT()
    raise ValueError("Unsupported STT engine")
