commit 3305e7aab9674f5b2f78e8ac962ba5af58cb926a
Author: Ben Sima <ben@bensima.com>
Date: Wed Dec 31 11:47:44 2025
Clean up ava user migration
- Move whisper model path from /home/ava/models to /var/lib/omni/models
- Archive /home/ava to /home/ben/archive/ava-home-backup-YYYYMMDD.tar.gz
- Copy memory.db from /home/ava to /home/ben (76 memories preserved)
- Remove old /home/ava/omni clone and /home/ava/{prompts,skills}
Task-Id: t-302.5
diff --git a/Omni/Agent/Telegram/Media.hs b/Omni/Agent/Telegram/Media.hs
index 0d62edd8..20d928f4 100644
--- a/Omni/Agent/Telegram/Media.hs
+++ b/Omni/Agent/Telegram/Media.hs
@@ -294,7 +294,7 @@ transcribeWithWhisperLocal audioBytes = do
(exitCode, stdoutStr, stderrStr) <-
Process.readProcessWithExitCode
"whisper-cli"
- ["--model", "/home/ava/models/ggml-base.en.bin", "--file", audioFile, "--no-timestamps"]
+ ["--model", "/var/lib/omni/models/ggml-base.en.bin", "--file", audioFile, "--no-timestamps"]
""
Directory.removeFile audioFile
case exitCode of