fix: patch source tts_tool.py path, not site-packages

This commit is contained in:
Thierry Pouplier
2026-05-09 14:27:07 +00:00
parent b750d26d80
commit 3016d0da2c

View File

@@ -2,7 +2,7 @@
"""Patch Hermes TTS tool: remove Edge TTS, replace with Piper as default/fallback.""" """Patch Hermes TTS tool: remove Edge TTS, replace with Piper as default/fallback."""
import sys 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: with open(tts_path) as f:
code = f.read() code = f.read()