{% extends "base.html" %} {% block title %}Settings - Memorizz{% endblock %} {% block content %} {% if message %}
OK {{ message }}
{% endif %} {% if error %}
! {{ error }}
{% endif %}

Notes

Leave a field blank to keep the current value. Keys apply immediately to this UI session and are written to the .env file for reuse.

{% for section in settings_sections %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %} {% if section.provider_checks %}
{% for check in section.provider_checks %}
{{ check.label }} {% if check.ready %} Ready {% else %} Needs Setup {% endif %}

{{ check.message }}

{% endfor %}
{% endif %}
{% for field in section.fields %}
{% if field.is_set %} Set {% else %} Missing {% endif %}
{% if field.field_type == 'select' %} {% if field.env == 'MEMORIZZ_DEFAULT_LLM_MODEL' %} {% else %} {% endif %} {% elif field.field_type == 'text' %} {% elif field.field_type == 'checkbox' %}
{% else %} {% endif %} {% if field.hint %}

{{ field.hint }}

{% endif %}
{% endfor %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}