mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 05:34:43 +02:00
feat(voice): ajouter client vocal Hermes (hermes-voice)
- tools/hermes-voice/ : pipeline VAD → faster-whisper → LiteLLM → piper TTS - mot-clé "hermes" détecté dans la transcription Whisper (pas de wake word model) - modes : VAD continu + push-to-talk + --no-tts pour debug - nftables : ouvrir port 4000 LiteLLM vers LAN domestique (192.168.1.0/24) - admin/ia/hermes-voice.md : documentation installation et utilisation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
eca28a8dc1
commit
6fc5b5984e
4 changed files with 387 additions and 2 deletions
|
|
@ -44,8 +44,8 @@ table inet filter {
|
|||
# Hermes dashboard (poste admin uniquement)
|
||||
tcp dport 9119 ip saddr {{ hermes_dashboard_allowed_ip }} accept
|
||||
|
||||
# LiteLLM proxy (pods k8s 10.42/16 + nœuds cluster)
|
||||
tcp dport 4000 ip saddr { 192.168.10.0/24, 10.42.0.0/16 } accept
|
||||
# LiteLLM proxy (pods k8s 10.42/16 + nœuds cluster + LAN domestique pour client vocal)
|
||||
tcp dport 4000 ip saddr { 192.168.1.0/24, 192.168.10.0/24, 10.42.0.0/16 } accept
|
||||
|
||||
# Postfix relay SMTP (pods k8s 10.42/16 + nœuds cluster)
|
||||
tcp dport 25 ip saddr { 192.168.10.0/24, 10.42.0.0/16 } accept
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue