feat(voice): add cli beep toggle

This commit is contained in:
helix4u
2026-04-21 00:29:29 -07:00
committed by Teknium
parent 9c0fc0b4e8
commit b48ea41d27
6 changed files with 91 additions and 12 deletions
+2 -1
View File
@@ -645,6 +645,7 @@ DEFAULT_CONFIG = {
"record_key": "ctrl+b",
"max_recording_seconds": 120,
"auto_tts": False,
"beep_enabled": True, # Play record start/stop beeps in CLI voice mode
"silence_threshold": 200, # RMS below this = silence (0-32767)
"silence_duration": 3.0, # Seconds of silence before auto-stop
},
@@ -849,7 +850,7 @@ DEFAULT_CONFIG = {
},
# Config schema version - bump this when adding new required fields
"_config_version": 21,
"_config_version": 22,
}
# =============================================================================