{% extends "base.html" %} {% from "components/settings_form.html" import render_setting %} {% set active_page = 'settings' %} {% block title %}Settings - Deep Research System{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Settings

Configure your research environment by adjusting the settings below. All settings are automatically saved when you make changes.

Learn & Get Help: Wiki · Docs · Config Reference · Discord · Reddit · Feedback

We're always looking for new ideas and recommendations! If you have suggestions for features, improvements, or if you encounter bugs or things that don't work optimally, please share them on GitHub Issues. Your feedback helps make Local Deep Research better for everyone.

{% if not has_encryption %}
Security Warning: Database encryption is not available. Your API keys and data are stored unencrypted.
Install SQLCipher for secure storage. See documentation for details.
{% endif %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Loading settings...

Show JSON Configuration
{% endblock %} {% block page_scripts %} {% endblock %}