Issue Description
transcribe_audio_async is called without await in backend/routes/voice.py even though it is an async function. This means the result is a coroutine object rather than the actual transcription result.
Expected Fix
Add await to lines 49 and 97 where transcribe_audio_async is called.
Files to Modify
- backend/routes/voice.py (lines 49-53, 97-101)
Issue Description
transcribe_audio_async is called without await in backend/routes/voice.py even though it is an async function. This means the result is a coroutine object rather than the actual transcription result.
Expected Fix
Add await to lines 49 and 97 where transcribe_audio_async is called.
Files to Modify