diff --git a/CHANGELOG.md b/CHANGELOG.md index 71dfcac..5dcb5ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/app/runtime_config.py b/app/runtime_config.py index 60c66b1..837cf0a 100644 --- a/app/runtime_config.py +++ b/app/runtime_config.py @@ -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.0–2.0 — wirkt sofort (kein Neustart)"), "local_llm_top_p": ("Top-p (lokal)", "float", "0.0–1.0 — wirkt sofort (kein Neustart)"), diff --git a/pyproject.toml b/pyproject.toml index e5bcb1d..282c506 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"