{% extends "base.html" %} {% block title %}Voxint — settings{% endblock %} {% block body %} {# Console 2.0 P6 hub (issue #161), rendered in place of settings.html when console_settings_enabled is on. It keeps every mutable section (and its anchor id) inline so external deep-links like /settings#llm still resolve, groups them under plain-language headings, and links out to the read-only sub-pages. The read-only "Pipeline models" panel moved to /settings/hardware, so it is the one section from the flat page not included here (nothing deep-links to it). #}

Settings

{% if tutorial_done %}

You finished the tutorial 🎉

You have completed one full run end to end: submit, attribute the voices, check the words, then export. When you are ready, submit your own audio or video and do the same with real speakers.

{% endif %}

First-run setup

Onboarding is complete. You can walk through the setup wizard again at any time — it never resets your existing preferences unless you change them.

Re-run the setup wizard →

Everyday settings

{% include "settings/_appearance.html" %} {% include "settings/_features.html" %} {% include "settings/_llm.html" %} {% include "settings/_translation.html" %} {% include "settings/_glossary.html" %} {% include "settings/_corrections.html" %} {% include "settings/_folders.html" %}

Advanced

{% include "settings/_semantic.html" %} {% include "settings/_sources.html" %} {% include "settings/_tutorial.html" %} {#- Plugin settings sections (issue #138): rendered after the core sections, in (order, section_id) order. Empty registry ⇒ no iterations ⇒ zero bytes. Each active plugin also has its own page under /settings/plugins/{id}. -#} {%- for section in plugin_settings_sections %} {% include section.template %} {%- endfor %}
{% endblock %}