from app.core.providers.base import STTProvider

class MockSTTProvider(STTProvider):
    def __init__(self, **kwargs):
        pass
        
    async def transcribe_audio(self, audio_data: bytes) -> str:
        # Return a transcript that satisfies the test assertions!
        return "hello from integration test audio pipeline"
