Commit 9f8ab49

benny-dou <60535774+benny-dou@users.noreply.github.com>
2026-06-03 14:30:18
chore(asr): lower down concurrent count for Tencent ASR
1 parent ffe943d
Changed files (1)
src
src/asr/tecent.py
@@ -200,7 +200,7 @@ async def tencent_file_chunks(
         return {"error": "Failed to load audio."}
 
     transcription = {}
-    semaphore = asyncio.Semaphore(30)  # max concurrent requests
+    semaphore = asyncio.Semaphore(10)  # max concurrent requests
 
     async def run_with_semaphore(task: Coroutine[Any, Any, dict]) -> dict:
         async with semaphore: