{% extends "base.html" %} {% block title %}Voice Assistant — {{ settings.APP_NAME }}{% endblock %} {% block content %}

Voice Assistant (Jervis)

Type a command for the home assistant — it's sent to the local LLM agent, which acts (lights, shopping, weather, reminders…) and speaks the reply on the house speakers.

{% if error %}
{{ error }}
{% endif %}
{% if reply %}
Jervis:

{{ reply }}

{% endif %}

Uses the local voice agent on `.13` (OmniRoute LLM). Replies are also spoken via Snapcast.

{% endblock %}