037c4b11df
- main.py: CustomTkinter GUI (400x520) mit Status-Indikator, Conversation-Log, Screenshot-Toggle und Settings-Dialog. Thread-sicherer UI-Queue für Hotkey-Callbacks. - hotkey_listener.py: pynput globaler Hotkey (press/release) + KeyCapturer für interaktive Hotkey-Konfiguration im Settings-Dialog. - config_manager.py: JSON-Settings in ~/.hermes-voice/settings.json mit DEFAULTS, load() merged gespeicherte mit Default-Werten. - audio_input.py: Vereinfacht auf start_recording/stop_recording/transcribe (kein Wake-Word-Loop mehr, direkt hotkey-gesteuert). - ai_client.py: Settings-dict statt config.py-Imports, MC2-URL/Modelle konfigurierbar. - requirements.txt: customtkinter>=5.2.0 + pynput>=1.7.6 hinzugefügt, pystray entfernt. - build.bat: PyInstaller --onefile --windowed → dist/HermesVoice.exe. - setup.bat: Veraltete Wake-Word-Hinweise entfernt, GUI-Check angepasst. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
403 B
Plaintext
30 lines
403 B
Plaintext
# Hermes Voice Client — Dependencies
|
|
# Installation: pip install -r requirements.txt
|
|
|
|
# Speech-to-Text (lokal auf CPU)
|
|
faster-whisper>=1.0.0
|
|
|
|
# Audio I/O
|
|
sounddevice>=0.4.6
|
|
numpy>=1.24.0
|
|
scipy>=1.11.0
|
|
|
|
# Text-to-Speech
|
|
edge-tts>=6.1.9
|
|
|
|
# Screen Capture
|
|
mss>=9.0.1
|
|
Pillow>=10.0.0
|
|
|
|
# HTTP Client
|
|
httpx>=0.27.0
|
|
|
|
# Audio Playback
|
|
pygame>=2.5.0
|
|
|
|
# GUI
|
|
customtkinter>=5.2.0
|
|
|
|
# Globaler Hotkey
|
|
pynput>=1.7.6
|