fix: reduce transcription timeout to 30s (v2.03.04)
300s was too long; nobody waits 5 min for a result. 30s gives slow remote servers a fair window while still failing fast. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
79f3b5cdab
commit
d40721dd3d
@ -6,4 +6,4 @@ counterpart to the macOS Blitztext menu bar app: it runs natively on the host
|
|||||||
(not in a container) so it can type into any application via xdotool.
|
(not in a container) so it can type into any application via xdotool.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "2.03.03"
|
__version__ = "2.03.04"
|
||||||
|
|||||||
@ -196,7 +196,7 @@ def transcribe(
|
|||||||
language: str = "",
|
language: str = "",
|
||||||
hotwords: str = "",
|
hotwords: str = "",
|
||||||
local_transcriber=None,
|
local_transcriber=None,
|
||||||
timeout: int = 300,
|
timeout: int = 30,
|
||||||
) -> str:
|
) -> str:
|
||||||
if engine.is_local:
|
if engine.is_local:
|
||||||
if local_transcriber is None:
|
if local_transcriber is None:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user