- FastAPI-Gateway mit REST-Endpunkten (chat/speak/transcribe/devices/sessions/config) - Geschichtete Konfiguration mit Profilen (local-dev/hybrid/cloud) via TOML + ENV - Registry-Pattern + einheitliche Route-Aufloesung (Default->Profil->ENV->Session->Request) - Device Router (strikt, Singleton) und Output-Lifecycle im Orchestrator - OpenRouter-Adapter (STT multipart/LLM/TTS) + lokale Provider-Stubs - Regelbasierte Pipeline (Cleaner/Spoken-Adapter/TTS-Normalizer) - 22 automatisierte Tests; Doku: README, BEDIENUNGSANLEITUNG, Architektur - Secrets ausschliesslich ueber Umgebung; .env und lokale config gitignored Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
21 lines
315 B
Text
21 lines
315 B
Text
# Secrets / lokale Konfiguration
|
|
.env
|
|
|
|
# Lokale/instanzspezifische Konfiguration (nur die *.example.toml wird versioniert)
|
|
config/voice-assistant.toml
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
|
|
# Lokale Tool-/Editor-Konfiguration
|
|
.claude/
|
|
|
|
# Editor-/Backup-Reste
|
|
*.bak
|
|
*.patch
|
|
*.orig
|