From 3016d0da2c6a3f2a3baf3d032ae54adb830d6bec Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Sat, 9 May 2026 14:27:07 +0000 Subject: [PATCH] fix: patch source tts_tool.py path, not site-packages --- ai/patch_tts_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai/patch_tts_tool.py b/ai/patch_tts_tool.py index 0187d3c..31db781 100644 --- a/ai/patch_tts_tool.py +++ b/ai/patch_tts_tool.py @@ -2,7 +2,7 @@ """Patch Hermes TTS tool: remove Edge TTS, replace with Piper as default/fallback.""" import sys -tts_path = '/opt/hermes/.venv/lib/python3.13/site-packages/tools/tts_tool.py' +tts_path = '/opt/hermes/tools/tts_tool.py' with open(tts_path) as f: code = f.read()