Compare commits

..

No commits in common. "f83c04f3d61ff228c3cc67b43c2862aef3b614a0" and "f875e421deb9b331310002d921fbf3f9671728a1" have entirely different histories.

3 changed files with 1 additions and 18 deletions

View file

@ -3,22 +3,6 @@
Alle nennenswerten Änderungen an **Alexis**. Format lose nach [Keep a Changelog](https://keepachangelog.com/de/);
Versionierung nach [SemVer](https://semver.org/lang/de/) (prä-1.0: `0.x`).
## [0.3.3] — 2026-06-30
### Hinzugefügt
- **Tarife der Kostenschätzung im Admin live einstellbar:** Strompreis (€/kWh),
Notruf-Kosten (€/Alarm), Cartesia ($/Zeichen).
- **`local_llm_base_url` live-setzbar** (Admin-Live-Config; wirkt pro Request ohne
Deploy) — lokale LLM-Basis-URL ohne Neustart umstellbar.
- **15 weitere Beruhigungssätze** für die Web-Suche (Opening 12 → 27, zufällige Auswahl).
### Behoben
- **Stille bei „kein Treffer":** Kommt keine Antwort (z. B. Web-Suche ohne Ergebnis),
sagt das System jetzt eine freundliche, lokalisierte Mitteilung („Dazu konnte ich
leider keine Informationen finden.") statt stumm zu bleiben.
- **Immer gleicher Beruhigungssatz** lag an einem alten Übersetzungs-Cache; wird beim
Start mit der formalen „Sie"-Übersetzung neu gefüllt.
## [0.3.2] — 2026-06-30
### Hinzugefügt

View file

@ -24,7 +24,6 @@ RUNTIME_SETTABLE: dict[str, tuple[str, str, str]] = {
"openrouter_tts_model": ("TTS-Modell (OpenRouter)", "str", "z.B. google/gemini-3.1-flash-tts-preview"),
"openrouter_tts_voice": ("TTS-Stimme (OpenRouter)", "str", "z.B. Zephyr, Puck, Kore"),
"piper_voice": ("TTS-Stimme (piper)", "str", "z.B. de_DE-thorsten-high"),
"local_llm_base_url": ("Lokales LLM (Basis-URL)", "str", "z.B. http://127.0.0.1:11434/v1 (Ollama) oder Heim-Host — wirkt sofort"),
"local_llm_system_prompt": ("Systemprompt (lokal)", "str", "Freier Text"),
"local_llm_temperature": ("Temperatur (lokal)", "float", "0.02.0 — wirkt sofort (kein Neustart)"),
"local_llm_top_p": ("Top-p (lokal)", "float", "0.01.0 — wirkt sofort (kein Neustart)"),

View file

@ -1,6 +1,6 @@
[project]
name = "voice-assistant-gateway"
version = "0.3.3"
version = "0.3.2"
description = "Modular voice assistant gateway with pluggable audio endpoints and provider adapters"
readme = "README.md"
requires-python = ">=3.11"