- Send by voice: a configured edge-anchored phrase (e.g. "computer send") is stripped and the rest is delivered AND submitted with Enter. Off by default; [routing] send_keywords + Settings → Input. - Wakeword benchmark (Settings → Benchmark): synthesize the wake phrase in random voices via any OpenAI-compatible TTS server, stream to wyoming-openwakeword, report recall / false-fires / per-voice breakdown. New [tts] config block. - Tests: test_voice_send.py, test_wakeword_bench.py. - Ignore agent workspace folder jules/. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
383 B
Python
10 lines
383 B
Python
"""Blitztext for Linux — native dictation daemon.
|
|
|
|
Press a global hotkey, speak, and the transcribed (optionally LLM-rewritten)
|
|
text is typed into whatever text field currently has focus. This is the Linux
|
|
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.
|
|
"""
|
|
|
|
__version__ = "1.8.0"
|