Description: The audio_transcript call is likely blocking the asyncio event loop. This prevents the server from handling other concurrent WebSocket connections while one is being processed.
Task: Wrap the transcription call in ```run_in_executor```` or use an asynchronous library to ensure the API remains responsive.
Description: The
audio_transcriptcall is likely blocking theasyncioevent loop. This prevents the server from handling other concurrent WebSocket connections while one is being processed.Task: Wrap the transcription call in ```run_in_executor```` or use an asynchronous library to ensure the API remains responsive.