from fastapi import Depends from ..providers.speech_provider import SpeechProvider from ..services.speech_service import SpeechService def get_speech_service() -> SpeechService: provider = SpeechProvider() return SpeechService(provider)