mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-09 00:34:43 +02:00
Ajoute `stt --install-service` / `--uninstall-service` : génère et active un service systemd --user (lié à graphical-session.target) qui lance le HUD + voix à l'ouverture de session. Le kiosk existant (ui.kiosk) fournit l'« écran Jarvis ». - cli : _service_unit (génération du unit, fonction pure testable), _cmd_install_service (écrit le unit + import-environment DISPLAY/WAYLAND + daemon-reload/enable/start), _cmd_uninstall_service. - Docs : admin/ia/stt.md (phase 6 → ✅, section Auto-start + caveat DISPLAY), stt/README. - Bump client 0.2.1 → 0.3.0. Phase 6 de la roadmap STT. Reste : test sur poste, outils Hermes (7). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017Qjq5jHiqNepnobJpHYpCa
32 lines
950 B
TOML
32 lines
950 B
TOML
[project]
|
|
name = "stt"
|
|
version = "0.3.0"
|
|
description = "STT — client vocal Jarvis du homelab Funk (voix + HUD, parle au STT-server)"
|
|
requires-python = ">=3.11"
|
|
readme = "README.md"
|
|
|
|
# Client : voix locale + HUD. L'inférence est déléguée au STT-server (pas d'anthropic/qdrant ici).
|
|
dependencies = [
|
|
"faster-whisper>=1.0.0", # STT local
|
|
"sounddevice>=0.4.6", # capture micro
|
|
"numpy>=1.24.0",
|
|
"requests>=2.31.0", # appels HTTP vers le STT-server
|
|
"webrtcvad-wheels>=2.0.10",# VAD / wake word
|
|
"websockets>=12.0", # backend ↔ HUD
|
|
"tomli-w>=1.0.0", # écriture config TOML
|
|
]
|
|
|
|
[project.scripts]
|
|
stt = "stt.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["stt*"]
|
|
|
|
# Le HUD (assets web) est livré comme données du package stt/
|
|
[tool.setuptools.package-data]
|
|
stt = ["hud/*", "hud/**/*"]
|