sapper-iq 1.1.40 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +224 -158
- package/package.json +7 -3
- package/sapper-ui.mjs +2047 -1836
- package/sapper.mjs +1 -1
package/sapper.mjs
CHANGED
|
@@ -1120,7 +1120,7 @@ const DEFAULT_CONFIG = Object.freeze({
|
|
|
1120
1120
|
enabled: true, // Feature available (still triggered manually via /voice)
|
|
1121
1121
|
whisperBin: 'whisper-cli', // whisper.cpp CLI binary on PATH
|
|
1122
1122
|
whisperStreamBin: 'whisper-stream', // whisper.cpp streaming binary (live mode)
|
|
1123
|
-
model: '
|
|
1123
|
+
model: join(os.homedir(), 'models', 'ggml-medium.bin'), // Path to a ggml-*.bin (whisper.cpp format) — use /v model to pick
|
|
1124
1124
|
language: 'auto', // 'auto' for detection, or 'en' / 'ar' / etc.
|
|
1125
1125
|
recorder: 'ffmpeg', // 'ffmpeg' or 'sox'
|
|
1126
1126
|
recordSeconds: 8, // Default mic-record duration
|