-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (43 loc) · 1.48 KB
/
.env.example
File metadata and controls
52 lines (43 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Optional local runtime commands
#
# Local STT command receives the recorded audio file path as first argument.
# Example (whisper.cpp wrapper script):
# WHISPY_LOCAL_STT_COMMAND="/usr/local/bin/whispy-stt"
# Local LLM command receives JSON payload {"prompt":"...","input":"..."} on stdin
# and must print the final processed text to stdout.
# Example:
# WHISPY_LOCAL_LLM_COMMAND="/usr/local/bin/whispy-llm"
WHISPY_LOCAL_STT_COMMAND=
WHISPY_LOCAL_LLM_COMMAND=
# Optional Whisper server/runtime overrides
#
# If set, this command is used as the local whisper-server binary path.
WHISPY_WHISPER_SERVER_COMMAND=
# Optional direct download overrides for build-time runtime preparation.
WHISPY_WHISPER_RUNTIME_CPU_URL=
WHISPY_WHISPER_RUNTIME_CUDA_URL=
# Set to 1 to fail runtime preparation when CUDA artifacts cannot be produced.
WHISPY_REQUIRE_CUDA_RUNTIME=
# Optional non-sensitive settings overrides (persisted by app into userData/.env)
#
# Hotkey and activation
WHISPY_HOTKEY=
WHISPY_ACTIVATION_MODE=
# UI toggles
WHISPY_AUTO_HIDE_FLOATING_ICON=
WHISPY_OVERLAY_RUNTIME_BADGE_ENABLED=
WHISPY_THEME=
WHISPY_DEBUG_MODE=
WHISPY_DETAILED_STATS_LOGGING=
# Startup and backend behavior
WHISPY_LAUNCH_AT_LOGIN=
WHISPY_AUTO_PASTE_BACKEND=
WHISPY_TRANSCRIPTION_RUNTIME=
WHISPY_POST_RUNTIME=
WHISPY_POST_PROCESSING_ENABLED=
WHISPY_WHISPER_RUNTIME_VARIANT=
# Translation and history
WHISPY_TRANSLATION_MODE_ENABLED=
WHISPY_TRANSLATION_HOTKEY_MODE=
WHISPY_TRANSLATION_CUSTOM_HOTKEY=
WHISPY_HISTORY_RETENTION_LIMIT=